Skip to content

Instantly share code, notes, and snippets.

@coderek
Created August 1, 2014 01:19
Show Gist options
  • Save coderek/19a2e2c9f749a0059da3 to your computer and use it in GitHub Desktop.
Save coderek/19a2e2c9f749a0059da3 to your computer and use it in GitHub Desktop.
String.prototype.hashCode = function() {
var hash = 0, i, chr, len;
if (this.length == 0) return hash;
for (i = 0, len = this.length; i < len; i++) {
chr = this.charCodeAt(i);
hash = ((hash << 5) - hash) + chr;
hash |= 0; // Convert to 32bit integer
}
return hash;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment