Skip to content

Instantly share code, notes, and snippets.

@adrianhorning08
Created May 15, 2018 20:31
Show Gist options
  • Save adrianhorning08/095e7e62f05fb97c332e73b33c342f4d to your computer and use it in GitHub Desktop.
Save adrianhorning08/095e7e62f05fb97c332e73b33c342f4d to your computer and use it in GitHub Desktop.
function stringReduce(str) {
const set = new Set(str);
return [...set].join('');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment