Skip to content

Instantly share code, notes, and snippets.

@addieljuarez
Created October 15, 2018 14:58
Show Gist options
  • Save addieljuarez/2924b14586c0cba5466969798476e5fd to your computer and use it in GitHub Desktop.
Save addieljuarez/2924b14586c0cba5466969798476e5fd to your computer and use it in GitHub Desktop.
function onlyUnique(value, index, self) {
return self.indexOf(value) === index;
}
// usage example:
var a = ['a', 1, 'a', 2, '1'];
var unique = a.filter( onlyUnique ); // returns ['a', 1, 2, '1']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment