Skip to content

Instantly share code, notes, and snippets.

@theasder
Created February 12, 2016 10:29
Show Gist options
  • Save theasder/55805933c42a1c68b6b2 to your computer and use it in GitHub Desktop.
Save theasder/55805933c42a1c68b6b2 to your computer and use it in GitHub Desktop.
function removeDuplicates(arr) {
oldLength = arr.length;
arr = arr.filter(function(item, pos, self) {
return self.indexOf(item) == pos;
});
return oldLength - arr.length;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment