Skip to content

Instantly share code, notes, and snippets.

@lantosgyuri
Last active May 29, 2020 13:45
Show Gist options
  • Save lantosgyuri/50abff78f57a70a9d7d2b5d74626fafb to your computer and use it in GitHub Desktop.
Save lantosgyuri/50abff78f57a70a9d7d2b5d74626fafb to your computer and use it in GitHub Desktop.
const numbers = [1,2,3,4,5,5,4];
const uniqueItems = Array.from(new Set(numbers));
console.log(uniqueItems);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment