Skip to content

Instantly share code, notes, and snippets.

@spences10
Created November 11, 2017 08:18
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 spences10/2c57e9ca1bbbf7d49cd5ec3fbda0c212 to your computer and use it in GitHub Desktop.
Save spences10/2c57e9ca1bbbf7d49cd5ec3fbda0c212 to your computer and use it in GitHub Desktop.
Unique items from array
const arr = [1,2,2,3,3,3,4,5,6,6,6,7,7,8]
const uniqueArray = [...new Set(arr)]
console.log(uniqueArray)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment