Created
November 21, 2017 16:52
-
-
Save BukhariH/ce07d75c1d4291762be988e88770f077 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
// Turns [1,2,2,2] into [1,2] | |
const arr = [1,2,2,2] | |
[...new Set(arr)] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment