Last Updated: February 25, 2016
·
178
· khay

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);
})