Delete Duplicate Elements from an Array
I had hard time thinking about how to remove duplicate elements from an array. I found many solutions and it is easier using Array.filter
.
var unique = arr.filter(function(elem, index, self) {
return index == self.indexOf(elem);
})
Written by K
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Javascript
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#