Skip to content

Instantly share code, notes, and snippets.

@robertpenner
Created October 21, 2013 11:00
Show Gist options
  • Save robertpenner/7082054 to your computer and use it in GitHub Desktop.
Save robertpenner/7082054 to your computer and use it in GitHub Desktop.
Functional JavaScript Workshop Solutions
function countWords(inputWords) {
return inputWords.reduce(function(counts, word) {
counts[word] = (counts[word] || 0) + 1;
return counts;
}, {})
}
module.exports = countWords
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment