Skip to content

Instantly share code, notes, and snippets.

@bee-san
Last active August 27, 2018 13:13
Show Gist options
  • Select an option

  • Save bee-san/c4b353dcc4d76dc664b3b0b3cf76ae0c to your computer and use it in GitHub Desktop.

Select an option

Save bee-san/c4b353dcc4d76dc664b3b0b3cf76ae0c to your computer and use it in GitHub Desktop.
function uniqueWords(words){
const unique_words_set = new Set(words);
return unique_words = Array.from(unique_words_set);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment