Skip to content

Instantly share code, notes, and snippets.

@dirkarnez
Created August 20, 2019 07:08
Show Gist options
  • Select an option

  • Save dirkarnez/77d3898de61a9387985ecdeda983f1f7 to your computer and use it in GitHub Desktop.

Select an option

Save dirkarnez/77d3898de61a9387985ecdeda983f1f7 to your computer and use it in GitHub Desktop.
JavaScript get hash code from string, copied from stackoverflow
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;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment