Skip to content

Instantly share code, notes, and snippets.

@sorie
Created August 12, 2021 05:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sorie/a66f4c4eed5d1d95e96412de73e978cf to your computer and use it in GitHub Desktop.
Save sorie/a66f4c4eed5d1d95e96412de73e978cf to your computer and use it in GitHub Desktop.
remove duplicates!
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