Nodejs Array Remove Object remove(key)

Here you can find the source of remove(key)

Method Source Code

Array.prototype.remove = function(key)
{
    for(var i = 0; i < this.length; ++i)
    {//ww w.  j av  a 2  s. c  om
        if(this[i] == key)
        {
            this.splice(i, 1);
            return;
        }
    }
}

Related

  1. remove(key)
    Array.prototype.remove = function(key){
      var i = this.indexOfKey(key);
      this.splice(i,1);
    
  2. remove(member)
    Array.prototype.remove = function(member) {
      var index = this.indexOf(member);
      if (index >= 0) {
        this.splice(index, 1);
    };
    var arr = [1, 2, 3];
    console.log(arr);
    arr.remove(1);
    ...
    
  3. remove(mixValue)
    Array.prototype.remove = function(mixValue) {
      if (arguments.length) {
        if (typeof mixValue === 'function') {
          for (var i = this.length - 1; i >= 0; i--) {
            if (mixValue.apply(this[i], [i])) {
              this.splice(i, 1);
        } else if (mixValue instanceof Array) {
    ...
    
  4. 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;
    };