Skip to content

Instantly share code, notes, and snippets.

@hctilg
Created July 29, 2024 14:45
Show Gist options
  • Save hctilg/f7a0772322224e38ab096f6ad85d682a to your computer and use it in GitHub Desktop.
Save hctilg/f7a0772322224e38ab096f6ad85d682a to your computer and use it in GitHub Desktop.
Remove duplicates in Javascript
const remove_duplicates = _array => {
let unique = [];
_array.forEach(element => {
if (!unique.includes(element)) unique.push(element);
});
return unique;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment