Skip to content

Instantly share code, notes, and snippets.

@behcet
Created January 21, 2015 22:36
Show Gist options
  • Save behcet/6e52634d08596c2ce9ef to your computer and use it in GitHub Desktop.
Save behcet/6e52634d08596c2ce9ef to your computer and use it in GitHub Desktop.
// remove duplicates
['such', 'wow',' amaze', 'wow', 'very', 'very'].filter(function (elem, index, src) {
return src.indexOf(elem, index+1) < 0;
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment