Skip to content

Instantly share code, notes, and snippets.

@harrisonmalone
Created December 6, 2018 03:40
Show Gist options
  • Save harrisonmalone/65dc4e3d39e8be0682bd972121bc8626 to your computer and use it in GitHub Desktop.
Save harrisonmalone/65dc4e3d39e8be0682bd972121bc8626 to your computer and use it in GitHub Desktop.
const array = [ 1, 2, 3, 1, 2, 3 ]
const uniq = array.filter(function(element, i) {
return array.indexOf(element) === i
})
console.log(uniq)
// => [ 1, 2, 3 ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment