Skip to content

Instantly share code, notes, and snippets.

@stoimen
Created May 4, 2015 13:16
Show Gist options
  • Save stoimen/c42dcc2d57f6f68c3941 to your computer and use it in GitHub Desktop.
Save stoimen/c42dcc2d57f6f68c3941 to your computer and use it in GitHub Desktop.
JavaScript Array Unique
array.filter(function(elem, index, self) {
return self.indexOf(elem) === index;
});
@ayarushin
Copy link

[…new Set(arr)]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment