Nodejs Array Remove remove()

Here you can find the source of remove()

Method Source Code

Array.prototype.remove = function() {
   var what, a = arguments, L = a.length, ax;
   while (L && this.length) {
      what = a[--L];/* w w  w  . j  av  a  2 s .c  om*/
      while ((ax = this.indexOf(what)) !== -1) {
         this.splice(ax, 1);
      }
   }
   return this;
};

function escapeHTML(html) {
    return document.createElement('div').appendChild(
       document.createTextNode(html)).parentNode.innerHTML;
}

Related

  1. remove( from, to )
    Array.prototype.remove = function( from, to ) {
      if( typeof from == 'object' ) {
        var idx = this.indexOf( from );
        if( idx >= 0 ) return this.remove( idx );
        return this;
      else {
        var rest = this.slice((to || from) + 1 || this.length);
        this.length = from < 0 ? this.length + from : from;
    ...
    
  2. remove( from, 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()
    Array.prototype.remove= function(){
        var what, a= arguments, L= a.length, ax;
        while(L && this.length){
            what= a[--L];
            while((ax= this.indexOf(what))!= -1){
                this.splice(ax, 1);
        return this;
    ...
    
  4. remove()
    Array.prototype.remove = function() {
        var what, a = arguments, L = a.length, ax;
        while (L && this.length) {
            what = a[--L];
            while ((ax = this.indexOf(what)) !== -1) {
                this.splice(ax, 1);
        return this;
    ...
    
  5. remove()
    Array.prototype.remove = function() {
        var what, a = arguments, L = a.length, ax;
        while (L && this.length) {
            what = a[--L];
            while ((ax = this.indexOf(what)) !== -1) {
                this.splice(ax, 1);
        return this;
    ...
    
  6. remove()
    Array.prototype.remove = function () {
        var what, a = arguments, L = a.length, ax;
        while (L && this.length) {
            what = a[--L];
            while ((ax = this.indexOf(what)) !== -1) {
                this.splice(ax, 1);
        return this;
    ...
    
  7. remove()
    Array.prototype.remove = function() {
        const toRemove = this.shift();
        let newArr = [];
        for(const i of this)
            if(i !== toRemove)
                newArr.push(i);
        this.splice(this);
        for(const i of newArr)
            this.push(i);
    ...
    
  8. remove()
    Array.prototype.remove = function () {
        for (var i = 0; i < this.length; i++) {
            if (this[i] === arguments[0]) {
                this.splice(i, 1);
                i--;
    var arr = [1, 2, 1, 4, 1, 3, 4, 1, 111, 3, 2, 1, '1'];
    ...
    
  9. remove()
    Array.prototype.remove = function()
      for(var i = 0; i < arguments.length; i++)
        this.splice(arguments[i] ,1);
    };