Skip to content

Instantly share code, notes, and snippets.

@hheinsoee
Created October 10, 2023 08:41
Show Gist options
  • Save hheinsoee/b11341b1bdca37af616b7ce37d04ac39 to your computer and use it in GitHub Desktop.
Save hheinsoee/b11341b1bdca37af616b7ce37d04ac39 to your computer and use it in GitHub Desktop.
function removeDuplicates(arr) {
return arr.filter((item,
index) => arr.indexOf(item) === index);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment