Nodejs Utililty Methods Array Remove

List of utility methods to do Array Remove

Description

The list of methods to do Array Remove are organized into topic(s).

Method

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);
};
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);
};
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);
};
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);
};
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);
...
remove(a)
Array.prototype.remove = function(a) {
    return this.filter(function(x) {
  return a.indexOf(x) < 0;
    });
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) {
...
remove(arg)
Array.prototype.remove = function(arg){
  var i=0,n=0;
  var arrSize = this.length;
  for(i=0;i<arrSize;i++){
    if(this[i] != arg){
      this[n++]=this[i];
  if(n<i){
...
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--;
};
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;
};