Last active
December 29, 2017 19:02
-
-
Save puiutucutu/63f095c6a1d50c2f45419c2fc9715d09 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 unique = dataset.filter((v, i, arr) => arr.indexOf(v) === i) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment