Skip to content

Instantly share code, notes, and snippets.

@oscarmorrison
Last active December 4, 2016 18:01
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 oscarmorrison/e0f76f0e8237a0c3bf936f2b34422754 to your computer and use it in GitHub Desktop.
Save oscarmorrison/e0f76f0e8237a0c3bf936f2b34422754 to your computer and use it in GitHub Desktop.
Unique Array
const uniqueArray = function(array) {
return array.filter(function (item, pos) {
return array.indexOf(item) == pos;
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment