Skip to content

Instantly share code, notes, and snippets.

@phaistonian
Created December 9, 2014 12:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phaistonian/54ad523019ace6e7b6cb to your computer and use it in GitHub Desktop.
Save phaistonian/54ad523019ace6e7b6cb to your computer and use it in GitHub Desktop.
Remove dupes
var hash = {};
[1,2,3,3,5,1].filter(function (item) { if (hash[item]) return true; hash[item] = false; return true; });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment