Nodejs String Hash hashCode()

Here you can find the source of hashCode()

Method Source Code

String.prototype.hashCode = function(){
   var hash = 0;/*from ww  w  .  j  a v a  2  s  . c  o  m*/
   if (this.length == 0) return hash;
   for (i = 0; i < this.length; i++) {
      char = this.charCodeAt(i);
      hash = ((hash<<5)-hash)+char;
      hash = hash & hash;
   }
   return hash;
}

function sqr(x) {
   return x*x;
}

Related

  1. hashCode()
    String.prototype.hashCode = function() {
      for(var ret = 0, i = 0, len = this.length; i < len; i++) {
        ret = (31 * ret + this.charCodeAt(i)) << 0;
      return ret;
    };
    
  2. hashCode()
    String.prototype.hashCode = function() {
      for(var ret = 0, i = 0, len = this.length; i < len; i++) {
        ret = (31 * ret + this.charCodeAt(i)) << 0;
      return Math.abs(ret);
    };
    
  3. hashCode()
    String.prototype.hashCode = function(){
      var hash = 0;
      for (var i = 0; i < this.length; i++) {
        var code = this.charCodeAt(i);
        hash = ((hash<<5)-hash)+code;
        hash = hash & hash; 
      return hash;
    
  4. hashCode()
    String.prototype.hashCode = function () {
        var h = 0, i = 0, l = this.length;
        if (l === 0) return h;
        for (; i < l; i++) {
            h = ((h << 5) - h) + this.charCodeAt(i);
            h |= 0; 
        return h;
    };
    ...
    
  5. hashCode()
    String.prototype.hashCode = function(){
      var hash = 0;
      if (this.length == 0) return hash;
      for (i = 0; i < this.length; i++) {
        char = this.charCodeAt(i);
        hash = ((hash<<5)-hash)+char;
        hash = hash & hash; 
      return hash;
    ...
    
  6. hashCode()
    String.prototype.hashCode = function(){
      var hash = 0;
      if (this.length == 0) return hash;
      for (let i = 0; i < this.length; i++) {
        let char = this.charCodeAt(i);
        hash = ((hash<<5)-hash)+char;
        hash = hash & hash; 
      return hash;
    ...
    
  7. hashCode()
    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; 
      return hash;
    ...
    
  8. hashCode()
    String.prototype.hashCode = function(){
      var hash = 0, i, char;
      if (this.length == 0) return hash;
      for (i = 0, l = this.length; i < l; i++) {
        char  = this.charCodeAt(i);
        hash  = ((hash<<5)-hash)+char;
        hash |= 0; 
      return hash;
    ...
    
  9. hashCode()
    String.prototype.hashCode = function() {
        var hash = 0;
        if(this.length == 0) return hash;
        for(var i = 0; i < this.length; i++) {
            var char = this.charCodeAt(i);
            hash = (( hash << 5 ) - hash) + char;
            hash = hash & hash;
        return hash;
    ...