Skip to content

Instantly share code, notes, and snippets.

@zmts
Last active April 12, 2021 22:02
Show Gist options
  • Save zmts/6031b7d30f4b22d941a2e0062d8a71b8 to your computer and use it in GitHub Desktop.
Save zmts/6031b7d30f4b22d941a2e0062d8a71b8 to your computer and use it in GitHub Desktop.
Remove duplicates from array

Remove duplicates from array (ES6)

[ ...new Set([1, 2, 3, 1, 2, 3]) ] // [1, 2, 3]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment