`_.get` function on object using JavaScript Library underscore.js ( #shorts )
Hi Friends,
`_.get` function on object using JavaScript Library underscore.js
`_.get` is a utility function in Underscore.js library is commonly used to retrieve the value of a nested property within an object, even if some intermediate properties do not exist without facing errors due to missing or undefined intermediate properties.
In below example, we have an object person with nested properties representing a person's details. We use _.get to retrieve the value of the city property within the address object. The result is "New York".
Note: _.get helps you handle situations where intermediate properties may be missing or undefined, preventing errors and allowing you to provide fallback values if needed.
// syntax
_.get(object, path, [defaultValue])
// example
var person = { name: "Annie", address: {
city: "New York",
street: { number: 123, name: "Main Street" }
}
};
var cityName = _.get(person, "address.city");
console.log(cityName);
// "New York"
#javascript #under #score #underscore #underscorejs #get #underscoreget #getfunction #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
-
0/2000
-
LIVE
The Big Mig™
2 hours agoWho The Fook Is That Guy? Another Nobody Going After Trump!
1,998 watching -
LIVE
LFA TV
14 hours agoALL DAY LIVE STREAM - TUESDAY 4/29/25
2,661 watching -
LIVE
Badlands Media
8 hours agoBadlands Daily: April 29, 2025
4,840 watching -
LIVE
Discover Crypto
1 hour agoBitcoin GOLD RUSH 2025: THIS State Going ALL IN!
256 watching -
LIVE
Rethinking the Dollar
19 minutes agoThe Damage Is Unrepairable: It's To Late To Go Back NOW! | Morning Check-In
59 watching -
LIVE
Bannons War Room
2 months agoWarRoom Live
18,655 watching -
1:13:13
Dear America
15 hours agoTrump’s Top Accomplishments That Will SILENCE The Left + Dem Rep. Introduces Impeachment Articles!
60K22 -
LIVE
Matt Kohrs
8 hours ago🔴[LIVE TRADING] Trump Admin Discusses New Trade Deals || The MK Show
1,096 watching -
LIVE
Wendy Bell Radio
6 hours agoEven the Left Knows It's Too Far Left
8,923 watching -
LIVE
NEWSMAX
2 hours agoThe Gerry Callahan Show LIVE (04/29/2025) | NEWSMAX Podcasts
483 watching
0 Comments