`_.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
-
5:52
MichaelMotamedi
12 hours ago $3.33 earnedEating The Most Elusive Lobster In The World
22.5K18 -
11:03
Melonie Mac
14 hours agoClair Obscure Expedition 33 Has Saved Gaming
41.2K33 -
7:39
The Shannon Joy Show
16 hours ago🇺🇸 America's Breaking Point: Are We Ready to Toss the Board? 🎯
29K21 -
10:00
Adam Does Movies
20 hours ago $3.12 earnedCEO Claims Netflix Saved Hollywood. Um, WHAT?!?! - Rant
42.1K9 -
1:00:43
Trumpet Daily
21 hours ago $5.90 earnedThat Big, Beautiful Wall Around the Vatican - Trumpet Daily | Apr. 28, 2025
26.7K22 -
12:40
Degenerate Jay
13 hours ago $0.92 earnedThe Perfect RoboCop Versus Terminator Game Needs To Be Made!
32.5K5 -
8:17
VSOGunChannel
17 hours ago $1.26 earnedYou Were Put on a Government Watch List || DECLASSIFIED
30.6K10 -
35:14
Steph & Kayls
19 hours ago $1.52 earnedSpicing Things Up: How To Navigate Adding A Third To The Bedroom | Ep. 4
37.9K14 -
28:59
Film Threat
14 hours agoTHUNDERBOLTS* EARLY REACTIONS | Film Threat After Dark
38.2K5 -
8:02:12
Rebel News
4 days ago $216.34 earnedELECTION NIGHT LIVE: Rebel News Canada coverage with Ezra Levant, Sheila Gunn Reid & Special Guests
454K249