Skip to content

Instantly share code, notes, and snippets.

@idmontie
Created April 7, 2018 23:24
Show Gist options
  • Save idmontie/c4754f04b1e13f55ce5345ba51e03f28 to your computer and use it in GitHub Desktop.
Save idmontie/c4754f04b1e13f55ce5345ba51e03f28 to your computer and use it in GitHub Desktop.
function dedup(arr) {
return Array.from(new Set(arr));
};
console.log(dedup([10, 10, 1, 0, 'a', 'b', 'a']));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment