VOOZH about

URL: https://www.geeksforgeeks.org/javascript/underscore-js-_-values-function/

⇱ Underscore.js _.values() Function - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Underscore.js _.values() Function

Last Updated : 25 Nov, 2021
The _.values() function is used to return the list of all values of the object element. Syntax:
_.values( object )
Parameters: This function accepts one parameter as mentioned above and described below:
  • object: It contains the object element that holds the elements of key and value pair.
Return Value: It returns the list of all values of the object element. Example 1: Output: 👁 Image
Example 2:
Output: 👁 Image
Comment