Nodejs Array Remove remove(arg)

Here you can find the source of remove(arg)

Method Source Code

Array.prototype.remove = function(arg){
   var i=0,n=0;/*from w  w w.j  a va2  s . co  m*/
   var arrSize = this.length;
   for(i=0;i<arrSize;i++){
      if(this[i] != arg){
         this[n++]=this[i];
      }
   }
   if(n<i){
      this.length = n;
   }
};

Related

  1. remove(/**Number*/ from, /**Number*/ to)
    Array.prototype.remove = function( from,  to)
      var rest = this.slice((to || from) + 1 || this.length);
      this.length = from < 0 ? this.length + from : from;
      return this.push.apply(this, rest);
    };
    
  2. remove(/**Number*/ from, /**Number*/ to)
    Array.prototype.remove = function( from,  to)
      var rest = this.slice((to || from) + 1 || this.length);
      this.length = from < 0 ? this.length + from : from;
      return this.push.apply(this, rest);
    };
    
  3. remove(/**Number*/ from, /**Number*/ to)
    Array.prototype.remove = function( from,  to)
      var rest = this.slice((to || from) + 1 || this.length);
      this.length = from < 0 ? this.length + from : from;
      return this.push.apply(this, rest);
    };
    Array.prototype.removeObject = function(object)
        var i = this.indexOf(object);
    ...
    
  4. remove(a)
    Array.prototype.remove = function(a) {
        return this.filter(function(x) {
      return a.indexOf(x) < 0;
        });
    
  5. remove(a)
    Array.prototype.remove = function(a) {
      for(i = 0; i < this.length; i++) {
        if (this[i] == a) {
          this.splice(i, 1);
          break;
    };
    Array.prototype.lpad = function(n, e) {
    ...
    
  6. remove(arg, all)
    Array.prototype.remove = function(arg, all){
        for(var i = 0; i < this.length; i++){
            if(this[i] === arg){
                this.splice(i,1);
                if(!all)
                    break;
                else
                    i--;
    };
    
  7. remove(argument)
    Array.prototype.remove = function (argument) {
      const removeFn = (typeof argument === 'function'
        ? argument
        : (item) => item === argument);
      for (var i = 0; i < this.length; i++) {
        if (removeFn(this[i])) {
          this.splice(i, 1);
          break;
      return this;
    };
    
  8. remove(arr, obj)
    Array.prototype.remove = function(arr, obj) {
      var index = arr.indexOf(obj);
      if (index != -1) {
        arr.splice(index, 1);
    };
    
  9. remove(array, element)
    var arr =  [1,2,1,4,1,3,4,1,111,3,2,1,'1'];
    Array.prototype.remove = function(array, element){
        for (var i = 0; i < array.length; i++) {
            if (array[i] === element) {
                array.splice(i, 1);
                i-=1;
    console.log(arr);
    arr.remove(arr,1);
    console.log(arr);