Premium Only Content

`_.uniq` function on array using JavaScript Library underscore.js ( #shorts )
Hi Friends,
`_.uniq` function on array using JavaScript Library underscore.js
`_.uniq` is also utility function in Underscore.js library that allows you to create a new array that contains only the unique elements from an existing array.
In below example, we have an array `people` that contains duplicate objects with different ages. We use `_.uniq` with an iteratee function that returns the person's name, to create a new array `uniquePeople` that contains only the unique objects based on their name. The resulting `uniquePeople` array contains the objects for Harry, Peter, and Ronnie but only the first occurrence of Harry is included because the iterate function returns the same value for both Harry objects.
// syntax
_.uniq(array, [isSorted], [iteratee])
//example
var people = [
{ name: "Harry", age: 30 },
{ name: "Peter", age: 25 },
{ name: "Harry", age: 35 },
{ name: "Ronnie", age: 30 },
];
var uniquePeople = _.uniq(people, false, function (person) {
return person.name;
});
console.log(uniquePeople);
// [
// { name: "Harry", age: 30 },
// { name: "Peter", age: 25 },
// { name: "Ronnie", age: 30 }
// ]
#javascript #under #score #underscore #underscorejs #uniq #underscoreuniq #uniqfunction #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
-
Dr Disrespect
8 hours ago🔴LIVE - DR DISRESPECT - WARZONE - RAGE ON THE MAIN STAGE
144K18 -
15:26
ColdBeer
13 hours agoTop 15 Best Games like FALLOUT 4! 2025 Edition
7 -
LIVE
LIVE WITH CHRIS'WORLD
8 hours agoLIVE WITH CHRIS’WORLD - Deals & Drama | Here’s The Truth
112 watching -
48:25
Donald Trump Jr.
3 hours agoLawless Lawfare and the Meme Wars. Interviews with Alex Swoyer & Doug Mackey | TRIGGERED Ep.262
85.6K26 -
59:01
BonginoReport
3 hours agoSydney Sweeney Makes America Hot Again & Triggers The Libs! - Hayley Caronia (Ep.99)
35.1K25 -
53:29
Candace Show Podcast
4 hours agoEXCLUSIVE! Brigitte Macron's Lawyer Has A Dark Past. Dan Bongino Speaks Out. | Candace Ep 220
58.2K135 -
26:02
Athlete & Artist Show
7 hours ago $0.21 earnedHappy Gilmore 2, Was 30 Years Worth The Wait?!
4.44K1 -
5:44
China Uncensored
9 hours agoYou DO NOT Want To Go To China
4.21K26 -
LIVE
The Mike Schwartz Show
3 hours agoTHE MIKE SCHWARTZ SHOW Evening Edition 07-28-2025
4,219 watching -
1:18:11
Redacted News
4 hours agoScotland is being DESTROYED and Neil Oliver is trying to save it
51.1K74