Skip to content

Instantly share code, notes, and snippets.

@AvocadoVenom
Created September 8, 2019 10:29
Show Gist options
  • Select an option

  • Save AvocadoVenom/87f1b66a37288d75e201ac8fe663429a to your computer and use it in GitHub Desktop.

Select an option

Save AvocadoVenom/87f1b66a37288d75e201ac8fe663429a to your computer and use it in GitHub Desktop.
JS Function removing duplicates in an array using Set structure
function removeDuplicates(arr) {
return [...new Set(arr)];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment