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:

