Created
July 6, 2018 13:48
-
-
Save robozavri/4262c5a5a284ccf812422a6dfda3d2f9 to your computer and use it in GitHub Desktop.
js get unique values
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
| var a = ["niko", "1", "niko", "3", "3", "1"]; | |
| var unique = a.filter(function(item, i, ar){ return ar.indexOf(item) === i; }); | |
| console.log(unique); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment