Skip to content

Instantly share code, notes, and snippets.

@sayyedhammadali
Last active October 5, 2021 18:17
Show Gist options
  • Save sayyedhammadali/4f9ddd71e575fa9d4601ac58683f6196 to your computer and use it in GitHub Desktop.
Save sayyedhammadali/4f9ddd71e575fa9d4601ac58683f6196 to your computer and use it in GitHub Desktop.
Remove Duplicates in an Array
const removeDuplicates = (arr) => [...new Set(arr)];
removeDuplicates([31, 56, 12, 31, 45, 12, 31]);
//[ 31, 56, 12, 45 ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment