Underscore.js _.property() Function Last Updated : 01 Aug, 2023 Summarize Comments Improve Suggest changes Share Like Article Like Report 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: html <!DOCTYPE html> <html> <head> <script type="text/javascript" src= "https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js"> </script> </head> <body> <script type="text/javascript"> var info = { Company: 'GeeksforGeeks', Address: 'Noida', Contact: '+91 9876543210' }; console.log(_.property('Company')(info) === 'GeeksforGeeks'); </script> </body> </html> Output: Example 2: html <!DOCTYPE html> <html> <head> <script type="text/javascript" src= "https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js"> </script> </head> <body> <script type="text/javascript"> var info = { Company: { name: 'GeeksforGeeks' }, Contact: { Address: { AddressInfo: 'Noida', ContNo: '+91 9876543210' } } }; var propInfo = _.property(['Contact', 'Address', 'AddressInfo', ]); console.log(propInfo(info)); var propInfo = _.property(['Contact', 'Address', 'ContNo', ]); console.log(propInfo(info)); </script> </body> </html> Output: Comment More infoAdvertise with us Next Article Underscore.js _.keys() Function A ashokjaiswal Follow Improve Article Tags : JavaScript Web Technologies JavaScript - Underscore.js Similar Reads Underscore.js _.propertyOf() Function The _.propertyOf() function is the inverse of _.property() function. This function takes an object as an argument and returns a function that will return the value of a provided property. Syntax: _.propertyOf( object ) Parameters: This function accepts one parameter as mentioned above and described 1 min read Underscore.js _.result() Function Underscore.js is a JavaScript library that provides a lot of useful functions that helps in the programming in a big way like the map, filter, invoke etc even without using any built-in objects. The _.result() function is an inbuilt function in Underscore.js library of JavaScript. Here, if the state 2 min read Underscore.js _.keys() Function Underscore.js_.keys() function is used to return the list of all keys of the given object. Syntax:_.keys( object );Parameters:object: It contains the object elements.Return Value: This function returns the list of all keys of the given object. Example 1: This example shows the use of the _.keys() fu 1 min read Underscore.js _.matcher() Function Underscore.js is a JavaScript library that provides a lot of useful functions that helps in the programming in a big way like the map, filter, invoke etc. even without using any built-in objects. The _.matcher() function is an inbuilt function in Underscore.js library of JavaScript which is used to 1 min read Underscore _.get() Function Underscore.js is a JavaScript library that provides a lot of useful functions that help in the programming in a big way like the map, filter, invokes, etc even without using any built-in objects. The _.get() function is an inbuilt function in the Underscore.js library of JavaScript which is used to 2 min read Underscore.js _.isSet() Function Underscore.js is a library in javascript that makes operations on arrays, string, objects much easier and handy. _.isSet() function is used to check whether the given object is javascript set or not. When linking the underscore.js CDN The "_" is attached to the browser as global variable. Syntax: _. 2 min read Like