Skip to content

Instantly share code, notes, and snippets.

@lenivene
Created April 23, 2019 17:46
Show Gist options
  • Save lenivene/169b4268c6aed11b70d949c6312ffc0e to your computer and use it in GitHub Desktop.
Save lenivene/169b4268c6aed11b70d949c6312ffc0e to your computer and use it in GitHub Desktop.
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