Skip to content

Instantly share code, notes, and snippets.

@pope
Created January 30, 2012 03:59
Show Gist options
  • Save pope/1702410 to your computer and use it in GitHub Desktop.
Save pope/1702410 to your computer and use it in GitHub Desktop.
function profoundWisdom(str) {
str = str.replace(/\s/g, '').toLowerCase();
var r = 0;
for (var i = 0; i < str.length; i++) {
r += (str.charCodeAt(i) - 96);
}
return r;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment