Skip to content

Instantly share code, notes, and snippets.

@jasdeepsingh
Created March 27, 2014 02:39
Show Gist options
  • Save jasdeepsingh/9798937 to your computer and use it in GitHub Desktop.
Save jasdeepsingh/9798937 to your computer and use it in GitHub Desktop.
histogram.js
var string = "my string where i'll count the occurrences";
var arr = string.split("");
obj = {};
arr.forEach(function(elem) { obj[elem] = 0 });
arr.forEach(function(elem) { obj[elem]++ });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment