VOOZH about

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

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


  • Courses
  • Tutorials
  • Interview Prep

Underscore.js _.property() Function

Last Updated : 1 Aug, 2023
The _.property() function is used to return a function that will return the specified property of any passed-in object. Syntax:
_.property( path )
Parameters: This function accepts one parameter as mentioned above and described below:
  • path: This parameter holds a simple key or array indexes or an array of object keys.
Return Value: It returns a function that will return the specified property of an object. Example 1: Output: 👁 Image
Example 2:
Output: 👁 Image
Comment