Skip to content

Instantly share code, notes, and snippets.

@4skinSkywalker
Last active April 16, 2019 09:28
Show Gist options
  • Select an option

  • Save 4skinSkywalker/f6aa7d9672876c42a84be39e8154f006 to your computer and use it in GitHub Desktop.

Select an option

Save 4skinSkywalker/f6aa7d9672876c42a84be39e8154f006 to your computer and use it in GitHub Desktop.
function frequencyCounter(iterable) {
let fc = {}
for (let item of iterable)
fc[item] = fc[item] + 1 || 1
return fc
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment