Skip to content

Instantly share code, notes, and snippets.

@danilowoz
Created April 28, 2019 19:51
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 danilowoz/6d899a9f19c5a47bb681ca1400622de5 to your computer and use it in GitHub Desktop.
Save danilowoz/6d899a9f19c5a47bb681ca1400622de5 to your computer and use it in GitHub Desktop.
Getting the categories
const countCategories = categories.reduce((prev, curr) => {
prev[curr] = (prev[curr] || 0) + 1
return prev
}, {})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment