Skip to content

Instantly share code, notes, and snippets.

@zhuzhuaicoding
Created January 19, 2017 03:53
Show Gist options
  • Save zhuzhuaicoding/f4ca80de2e98fbae8a648923b644b29d to your computer and use it in GitHub Desktop.
Save zhuzhuaicoding/f4ca80de2e98fbae8a648923b644b29d to your computer and use it in GitHub Desktop.
let arr = [3, 5, 2, 2, 5, 5];
let unique = [...new Set(arr)]; // [3, 5, 2]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment