Skip to content

Instantly share code, notes, and snippets.

@6ui11em
Created January 11, 2019 09:04
Show Gist options
  • Save 6ui11em/df8f534009db767b93c2d58977a80c3a to your computer and use it in GitHub Desktop.
Save 6ui11em/df8f534009db767b93c2d58977a80c3a to your computer and use it in GitHub Desktop.
Javascript remove array duplicates #javascript #js #array #duplicates
var sandwiches = ['turkey', 'ham', 'turkey', 'tuna', 'pb&j', 'ham', 'turkey', 'tuna'];
var deduped = sandwiches.filter(function (sandwich, index) {
return sandwiches.indexOf(sandwich) === index;
});
// Logs ["turkey", "ham", "tuna", "pb&j"]
console.log(deduped);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment