Created
April 23, 2019 17:46
-
-
Save lenivene/169b4268c6aed11b70d949c6312ffc0e to your computer and use it in GitHub Desktop.
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
const list_names = [ | |
"Hello", | |
"World", | |
"Lenivene", | |
"Bezerra", | |
"Lenivene", | |
"Enevinel", | |
"World" | |
]; | |
const list_no_duplicates = [...new Set(list_names)]; | |
console.log(list_no_duplicates); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment