Created
September 6, 2017 19:01
-
-
Save ilio/072238f2be53ef984624751da0c8ad20 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
const array = [1, 2, 3, 1, 3, 4, 5, 2]; | |
const uniqueArray = [...new Set(array)]; | |
console.log(uniqueArray) | |
// output: [1, 2, 3, 4, 5] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment