Skip to content

Instantly share code, notes, and snippets.

@KevinPy
Created March 29, 2019 16:57
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 KevinPy/d8e108cd76d733423bcdfb35e634efb9 to your computer and use it in GitHub Desktop.
Save KevinPy/d8e108cd76d733423bcdfb35e634efb9 to your computer and use it in GitHub Desktop.
Filter unique values
const array = [1, 1, 2, 3, 5, 5, 1]
const uniqueArray = [...new Set(array)];
console.log(uniqueArray); // [1, 2, 3, 5]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment