Skip to content

Instantly share code, notes, and snippets.

@trafficinc
Created November 11, 2019 14:03
Show Gist options
  • Save trafficinc/85baaffd0016659e021ff913c301ce8a to your computer and use it in GitHub Desktop.
Save trafficinc/85baaffd0016659e021ff913c301ce8a to your computer and use it in GitHub Desktop.
Converts a String to a 32bit integer
String.prototype.hashCode = function () {
var hash = 0, i, chr;
if (this.length === 0) return hash;
for (i = 0; i < this.length; i++) {
chr = this.charCodeAt(i);
hash = ((hash << 5) - hash) + chr;
hash |= 0; // Convert to 32bit integer
}
return hash;
};
// Use
var str = "Hello World";
console.log(str.hashCode());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment