Skip to content

Instantly share code, notes, and snippets.

@AvocadoVenom
Last active May 9, 2020 10:57
Show Gist options
  • Select an option

  • Save AvocadoVenom/5681bf49f9fd0fa5c081f3ace47c4d83 to your computer and use it in GitHub Desktop.

Select an option

Save AvocadoVenom/5681bf49f9fd0fa5c081f3ace47c4d83 to your computer and use it in GitHub Desktop.
JS function to remove duplicates in array.
function removeDuplicates(arr) {
return arr.reduce((acc, cur) => {
if(acc.indexOf(cur) === -1) acc.push(cur);
return acc;
}, []);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment