Nodejs Array Remove Object remove(obj)

Here you can find the source of remove(obj)

Method Source Code

// javascript file

Array.prototype.remove = function(obj) { 
    for (var i = 0; i < this.length; i++){ 
        var temp = this[i];
        // isNaN("") return false
        if (obj != "" && !isNaN(obj)) {
            temp = i; /*from www.j a v a2s  .  c om*/
        } 
        if (temp == obj) { 
            for (var j = i; j <this.length; j++) { 
                this[j] = this[j+1]; 
            } 
            this.length = this.length-1; 
        } 
    }
}

Related

  1. remove(ob)
    Array.prototype.remove = function(ob) {
        for (var i = 0; i < this.length; i++) {
            if (this[i] == ob) {
                var st = (i == 0) ? [] : this.slice(0, i);
                var ed = (i >= this.length) ? [] : this.slice(i + 1);
                var ss = st.concat(ed);
                return ss;
        return this;
    };
    
  2. remove(obj)
    Array.prototype.remove = function(obj) {
      for(var i=0; i<this.length; i++) {
        if(this[i] === obj) {
          this.splice(i, 1);
          return true;
        };
      };
      return false;
    };
    ...
    
  3. remove(obj)
    Array.prototype.remove = function(obj) {
      var a = [];
      for (var i=0; i<this.length; i++) {
        if (this[i] != obj) {
          a.push(this[i]);
      return a;
    
  4. remove(obj)
    Array.prototype.remove = function(obj) {
      var index = this.indexOfObject(obj);
      if (index > -1) {
        this.splice(index, 1);
    };
    
  5. remove(obj)
    Array.prototype.remove = function(obj) {
      var index = this.indexOf(obj);
      if(index !== -1) {
        return this.splice(index, 1)[0];
      return undefined;
    
  6. remove(obj)
    Array.prototype.remove = function(obj) {
      for(var i = 0; i < this.length; i++){
        if(this[i] === obj){
          this.splice(i, 1);
      return this;
    };
    
  7. remove(obj)
    Array.prototype.remove = function (obj) {
        var tempList = new Array();
        for (var i = 0, ti = 0; i < this.length; i++) {
            if (this[i] != obj) {
                tempList[ti] = this[i];
                ti++;
        this.setArray(tempList);
    ...
    
  8. remove(obj)
    Array.prototype.remove = function(obj) {
      var idx = this.indexOf(obj);
      if(idx == -1) { return false }
      this.splice(idx, 1);
      return true
    };
    Array.prototype.contains = function(i) { return this.indexOf(i) >= 0 };
    
  9. remove(obj)
    Array.prototype.remove = function(obj) {
      var index = this.indexOf(obj);
      if (index > -1) {
        this.splice(index, 1);
    };