Created
August 20, 2018 13:51
-
-
Save rjoydip-zz/ce7f8f7f4a4e6e6663948064a55184fe to your computer and use it in GitHub Desktop.
unique array using set
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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