Nodejs Array Remove remove(elementVal)

Here you can find the source of remove(elementVal)

Method Source Code

/**/*from  w  w  w  .  j  a  v a  2s  . c  om*/
 * Write a function that removes all elements with a given value.
 Attach it to the array type.
 Read about prototype and how to attach methods.

 var arr = [1,2,1,4,1,3,4,1,111,3,2,1,'1'];
 arr.remove(1); //arr = [2,4,3,4,111,3,2,'1'];
 */

Array.prototype.remove = function(elementVal){

    //while(this.indexOf(elementVal)!==-1)
    var len = this.length;
   for(var i =0;i<len;i+=1)
    {
        if(this[i]===elementVal)
        {
            this.splice(i,1);
            i-=1;
        }
    }
}
//test variables
var arr = [1,1,1,2,2,2,2,1,1,1,1,1,1];
arr.remove(1);

console.log(arr);

Related

  1. remove(element)
    Array.prototype.remove = function (element) {
      this.splice(this.indexOf(element), 1);
    
  2. remove(element)
    Array.prototype.remove = function(element){
      var i = 0;
      var len = this.length;
      for(i = len - 1; i >= 0; i--){
        if(this[i] === element){
          this.splice(i,1);
    
  3. remove(element)
    Array.prototype.remove = function (element) { 
        var myArray = new Array;
        this.forEach(function(item) {
           if(item !== element)
               myArray.push(item);
        });
        this.splice(0);
        for(var i = 0; i < myArray.length; i++)
            this.push(myArray[i]);
    ...
    
  4. remove(element)
    var arrayElements = [1, 2, 1, 4, 1, 3, 4, 1, 111, 3, 2, 1, '1'];
    Array.prototype.remove = function (element) {
        var elements = [];
        for (var i = 0; i < this.length; i++) {
            if (this[i] !== element) {
                elements.push(this[i]);
        return elements;
    ...
    
  5. remove(element, howMany)
    Array.prototype.remove = function(element, howMany) {
      var idx
      if (-1 !== (idx = this.indexOf(element))) {
        this.splice(idx, howMany || 1)
    
  6. remove(elementValue)
    Array.prototype.remove = function (elementValue) {
        for (var i = 0; i < this.length; i++) {
            if (this[i] === elementValue) {
                this.splice(i, 1);
                i--;
    Array.prototype.toString = function () {
    ...
    
  7. remove(f)
    Array.prototype.remove  = function(f){
      var ME=this;
      if(typeof(f)=="function"){
        ME.each(function(s,i){
          if(f(s,i))ME.splice(i,1);
        },-1);
      return ME;
    };
    ...
    
  8. remove(filter)
    Array.prototype.remove = function(filter)
      return this.select(function(row){
        return !filter(row);
      });
    
  9. remove(fn, v)
    Array.prototype.remove = function(fn, v) { 
        var self = this;
        var isFN = typeof(fn) === 'function';
        var isV = v !== undefined;
        var arr = [];
        for (var i = 0, l = self.length; i < l; i++) {
            if (isFN) {
                if (!fn.call(self, self[i], i)) {
                    arr.push(self[i]);
    ...