Skip to content

Instantly share code, notes, and snippets.

@jlcampana
Created February 11, 2015 14:04
Show Gist options
  • Save jlcampana/cb7ccb77130c93ad2e29 to your computer and use it in GitHub Desktop.
Save jlcampana/cb7ccb77130c93ad2e29 to your computer and use it in GitHub Desktop.
Avoid duplicates in JavaScript
var a = [1,2,3,4,5,6,7,7,7,7,7,8];
a = a.filter(function(item, pos) {
return a.indexOf(item) == pos;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment