`_.property` function on object using JavaScript Library underscore.js ( #shorts )

1 year ago
3

Hi Friends,

`_.property` function on object using JavaScript Library underscore.js

`_.property` function in Underscore.js library creates a function that returns the value of a specified property on an object. It is a easy way to get a specific property value from an object.

In below example, we create a function getName using _.property('name'). This function is now bound to the 'name' property. We then have an object person with properties like 'name' and 'age'. When we call getName(person), it retrieves the value of the 'name' property from the person object, which is "Annie".

Note: _.property function returns a new function that, when called with an object as its argument, retrieves the value of the specified property on that object.

// syntax
_.property(key)

// example
var getName = _.property('name');
var person = { name: 'Annie', age: 25 };

console.log(getName(person));
// "Annie"

#javascript #under #score #underscore #underscorejs #property #hastag #underscoreproperty #propertyfunction #unique #object #array #string #nodejs #javascriptinterview #method #js #jquery #function #shorts #viral #popular #latest #new #coders #development #code #dev #interview #php #trend #trending #answer #laravel #youtube #instagram #socialmedia #education #edit #how #india #knowledge #quiz #reels #short #subscribe #share #update #video #web #webdeveloper #website #webdesign #ytshorts #youtuber #princecheema_official @princecheema_official

Loading comments...