The _.functions() function is used to return the sorted list of all methods that present in an object.
Syntax:
_.functions(object)
Parameters: This function accepts single parameter as mentioned above and described below:
- object: It contains the object element that holds the elements [key, value] pair.
 
Return Value: It returns the sorted list of all methods that present in an object.
Example:
<!DOCTYPE html> <html>   <head>     <script type="text/javascript" src=     </script> </head>   <body>     <script type="text/javascript">           console.log(_.functions(_));     </script> </body>   </html>  | 
Output:

                                    