Skip to content

Instantly share code, notes, and snippets.

@alexanderjeurissen
Created January 2, 2014 00:35
Show Gist options
  • Save alexanderjeurissen/8213324 to your computer and use it in GitHub Desktop.
Save alexanderjeurissen/8213324 to your computer and use it in GitHub Desktop.
var hashCode = function(s) {
return s.split("").reduce(function(a, b) {
a = ((a << 5) - a) + b.charCodeAt(0);
return a & a
}, 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment