Skip to content

Instantly share code, notes, and snippets.

@mwakipesile
Created May 1, 2018 17:03
Show Gist options
  • Save mwakipesile/ee468f255c873a4c3980241944aacb47 to your computer and use it in GitHub Desktop.
Save mwakipesile/ee468f255c873a4c3980241944aacb47 to your computer and use it in GitHub Desktop.
function wordCount(str) {
var words = str.toLowerCase().split(/\W*\s\W*|[^'\w]+/);
var incrementWordCount = (word_count, word) => {
word_count[word] = 1 + (word_count[word] | 0)
return word_count;
};
return words.reduce(incrementWordCount, {});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment