Skip to content

Instantly share code, notes, and snippets.

@rjoydip-zz
Created August 20, 2018 13:51
Show Gist options
  • Save rjoydip-zz/ce7f8f7f4a4e6e6663948064a55184fe to your computer and use it in GitHub Desktop.
Save rjoydip-zz/ce7f8f7f4a4e6e6663948064a55184fe to your computer and use it in GitHub Desktop.
unique array using set
var result = [...new Set([1, 2, 1, 4, 1, 3])];
console.log(result)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment