Last active
September 9, 2017 09:34
-
-
Save timneutkens/c8605955301a41d9a254a5b9c3fffb26 to your computer and use it in GitHub Desktop.
Unique array values
This file contains 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 yourArray = [1,2,1,3,3] | |
Array.from(new Set(yourArray)) // [1,2,3] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment