Created
August 30, 2017 14:16
-
-
Save aherve/741753e1f25e4c87450e6aebe590134b 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
// get uniq from array | |
const numbers = [1, 2, 1, 1, 2, 1, 3, 4, 1 ] | |
const uniq = [...new Set(numbers)] // => [ 1, 2, 3, 4 ] | |
const uniq2 = Array.from(new Set(numbers)) // => [ 1, 2, 3, 4 ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment