Nodejs Array Remove Object remove(values)

Here you can find the source of remove(values)

Method Source Code

/**/*from  w  ww. j ava 2s  .c om*/
@Name: Array.prototype.remove
@Author: Paul Visco
@Version: 1.1 11/19/07
@Description: Removes a value or a set of values from an array.
@Param: values Array If passed an array of values, all the values in the argument array are removed from the array being manipulated
@Param: value Object/String/Number If a single object, string, number, etc is passed to the function than only that value is removed.
@Return: Array Returns the array minus the values that were specified for removal.
@Example:
var myArray = [5, 10, 15];
var answer = myArray.remove([10,5]);
//answer =[15];

var myArray = [6, 7, 8];
var answer = myArray.remove(6);
//answer =[7,8];
*/
Array.prototype.remove = function(values){
   
   return this.filter(function(v){
      if(sb.typeOf(values) !='array'){
         return v != values;
      } else {
         return !values(v);
      }
   });
};

Related

  1. remove(value)
    Array.prototype.remove = (value) => {
        const position = this.indexOf(value)
        if (~position) this.splice(position, 1)
        return this
    
  2. remove(value)
    Array.prototype.remove = function (value) {
        while (this.indexOf(value) >= 0) {
            this.splice(this.indexOf(value), 1);
        return this;
    Array.prototype.remove2 = function (value){
        var i, len,
            possitions = [];
    ...
    
  3. remove(value)
    Array.prototype.remove = function(value) {
        for (var i = 0; i < this.length; i+=1) {
            if (this[i] === value) {
                this.splice(i, 1)
                i-=1;
    
  4. remove(value)
    Array.prototype.remove = function(value) {
      var idx;
      for (idx = this.indexOf(value); idx > -1; idx = this.indexOf(value)) {
        this.splice(idx, 1);
      return this;
    };
    function test() {
      var i, len, N, value, result, arr = [];
    ...
    
  5. remove(value)
    Array.prototype.remove = function(value)
      for (var i = 0; i < this.length; i++)
        if (this[i] == value)
          this.splice(i, 1);
          return;
    
  6. remove(what)
    Array.prototype.remove = function(what) {
       var index = this.indexOf(what);
       if (index !== -1) {
          this.splice(this.indexOf(what), 1);
       return this;
    
  7. remove(x)
    Array.prototype.remove = function (x) {
      var keepers = [];
      for (var i = 0; i < this.length; i += 1) {
        if (this[i] !== x) {
          keepers.push(this[i]);
      return keepers;
    };
    ...
    
  8. remove(x)
    'use strict';
    var someArray = [1, 2, 3];
    Array.prototype.remove = function(x) {
      for(let i = 0; i < this.length; i++) {
        if(this[i] === x) {this.splice(i, 1);}
      return this;
    };
    someArray.remove(2);
    ...
    
  9. remove(x)
    Array.prototype.remove = function(x) { 
      var idx = this.indexOf(x);
      if (idx<0) return; 
      var l = this.length;
      for (var i=idx+1;i<l;i++)
        this[i-1]=this[i];
      this.pop(); 
    var a = [1,2,4,5,7];
    ...