Nodejs Array Remove remove(e)

Here you can find the source of remove(e)

Method Source Code

Array.prototype.remove = function (e) {
  for (var i = 0; i < this.length; i++)
  if (e == this[i]) return this.splice(i, 1);
}
Array.prototype.each = function (fn) {
  for (var i = 0; i < this.length; i++) fn(this[i]);
}
Array.prototype.compact = function (fn) {
  for (var i = 0; i < this.length; i++)
  if (this[i] == null) {
    this.splice(i, 1);//from w w  w  .  j  a  v  a 2s.  c o m
  }
  return this;
}

Related

  1. remove(dx)
    Array.prototype.remove=function(dx)
        if(isNaN(dx)||dx>this.length){return false;}
        for(var i=0,n=0;i<this.length;i++)
            if(this[i]!=this[dx])
                this[n++]=this[i]
        this.length-=1
    };
    
  2. remove(dx)
    Array.prototype.remove = function(dx) {
      if (isNaN(dx) || dx > this.length) {
        return false;
      for (var i = 0, n = 0; i < this.length; i++) {
        if (i != dx) {
          this[n++] = this[i]
      this.length -= 1
    
  3. remove(e)
    Array.prototype.remove = function(e) {
      var t, _ref;
      if ((t = this.indexOf(e)) > -1) {
        return ([].splice.apply(this, [t, t - t + 1].concat(_ref = [])), _ref);
    };
    
  4. remove(e)
    Array.prototype.remove = function(e) {
      for (var i = 0; i < this.length; i++)
        if (e == this[i]) return this.splice(i, 1);
    
  5. remove(e)
    Array.prototype.remove = function(e) {
      for(var i = 0, j = this.length; i < j; i++)
        if(e == this[i])
          return this.splice(i, 1);
    };
    
  6. remove(e)
    Array.prototype.remove = function(e) {
        for (var i = 0; i < this.length; i++) {
            if (e == this[i]) { return this.splice(i, 1); }
    };
    
  7. remove(e)
    Array.prototype.remove = function(e) {
      for (var i = 0, length = this.length; i < length; ++i) {
          if (this[i] === e) {
            this.splice(i, 1);
    };
    
  8. remove(el)
    Array.prototype.remove = function(el) {
      var i = this.indexOf(el);
      if (i != -1) {
        this.splice(i, 1);
      return this;
    };
    
  9. remove(el)
    Array.prototype.remove = function(el) {
      for(var i = 0; i < this.length; i++) {
        if(this[i] === el) {
          this.splice(i, 1);
          return true;
      return false;
    };
    ...