Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Underscore.js _.functions() Function

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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:

My Personal Notes arrow_drop_up
Last Updated : 25 Nov, 2021
Like Article
Save Article
Similar Reads
Related Tutorials