Skip to content

Instantly share code, notes, and snippets.

@BukhariH
Created November 21, 2017 16:52
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 BukhariH/ce07d75c1d4291762be988e88770f077 to your computer and use it in GitHub Desktop.
Save BukhariH/ce07d75c1d4291762be988e88770f077 to your computer and use it in GitHub Desktop.
// Turns [1,2,2,2] into [1,2]
const arr = [1,2,2,2]
[...new Set(arr)]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment