`_.where` function on array using JavaScript Library underscore.js ( #shorts )
Hi Friends,
`_.where` function on array using JavaScript Library underscore.js
`_.where` is a utility function in Underscore.js library that allows you to filter a collection based on multiple key-value pairs. It returns an array of all objects from the collection that match the specified properties.
In below example, we have an array of user objects users. We use _.where to filter the collection and retrieve all objects that have the property city set to "London". The result, filteredUsers, is an array containing the user objects that match the specified key-value pair.
Note: _.where returns an array containing all objects from the collection that match the specified key-value pairs.
// syntax
_.where(list, properties)
// example
var users = [
{ name: "Alice", age: 25, city: "New York" },
{ name: "Bob", age: 30, city: "London" },
{ name: "Charlie", age: 20, city: "Paris" },
{ name: "David", age: 35, city: "London" }
];
var filteredUsers = _.where(users, { city: "London" });
console.log(filteredUsers);
// [{ name: "Bob", age: 30, city: "London" },
// { name: "David", age: 35, city: "London" }]
#javascript #under #score #underscore #underscorejs #findWhere #findwhere #find #where #underscorefindwhere #findwherefunction #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
Right Side Broadcasting Network
5 days agoLIVE: President Trump Holds a Rally Celebrating his First 100 Days in Warren, MI - 4/29/25
3,124 watching -
LIVE
Steven Crowder
3 hours ago🔴 Why Canada's Election Results Are A Golden Opportunity For Trump, America & Alberta
32,630 watching -
LIVE
The White House
1 hour agoPress Secretary Karoline Leavitt Briefs Members of the New Media, Apr. 29, 2025
1,844 watching -
1:18:15
The Rubin Report
1 hour agoPress Gasps When Told Trump’s Executive Order for Sanctuary Cities
13.8K29 -
LIVE
Flyover Conservatives
11 hours agoThe Future of AI: The Good, The Bad, The Ugly - Marc Beckman | FOC Show
178 watching -
LIVE
The Shannon Joy Show
1 hour ago🔥🔥Doctors Of Death. The Transformation Of America’s Health System Into A Death System Post COVID - With Special Guest Dr. Clayton Baker🔥🔥
508 watching -
DVR
Bannons War Room
2 months agoWarRoom Live
14.5M3.95K -
LIVE
The Mel K Show
1 hour agoMORNINGS WITH MEL K - 4/29/25 Canada Chooses Globalism, Lack of Accountability is Allowing Chaos, Americans Wide Awake
626 watching -
LIVE
BitLab Academy
1 hour agoEthereum Mega Pump Loading? Bitcoin Price Targets | Altcoin Super cycle?
165 watching -
LIVE
LFA TV
15 hours agoALL DAY LIVE STREAM - TUESDAY 4/29/25
3,173 watching
0 Comments