Skip to content

Instantly share code, notes, and snippets.

@Daniel-Hug
Created June 10, 2017 01:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Daniel-Hug/f934631f9ade41124e8ca4684bb65745 to your computer and use it in GitHub Desktop.
Save Daniel-Hug/f934631f9ade41124e8ca4684bb65745 to your computer and use it in GitHub Desktop.
JS function: count unique items in collection
function countUnique(iterable) {
return new Set(iterable).size;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment