Created
August 12, 2021 05:02
-
-
Save sorie/a66f4c4eed5d1d95e96412de73e978cf to your computer and use it in GitHub Desktop.
remove duplicates!
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 = ['dog','cat','fox','dog','hols','cat']; | |
console.log(array); | |
console.log([...new Set(array)]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment