Last active
August 27, 2018 13:13
-
-
Save bee-san/c4b353dcc4d76dc664b3b0b3cf76ae0c 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
| 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