Nodejs Array Remove Object remove(object)

Here you can find the source of remove(object)

Method Source Code

Array.prototype.remove = function(object) {
   var index = this.indexOf(object, 0, this.length);
   if (index == -1) return;
   if (index == 0) {
      this.shift();// w  w w.j av  a2  s  .com
   } else {
      this.splice(index, 1);
   }
};

Related

  1. remove(obj)
    Array.prototype.remove=function(obj){
        var index=this.indexOf(obj);
        if (index>=0){
            this.removeAt(index);
    
  2. remove(obj)
    Array.prototype.remove = function(obj) {
      for (var i=0; i<this.length; i++) {
        if (obj == this[i]) {
          return this.splice(i,1);
        return this;
    
  3. remove(obj)
    Array.prototype.remove=function(obj){
      var index=this.indexOf(obj);
      if (index>=0){
        this.removeAt(index);
    
  4. remove(obj)
    Array.prototype.remove = function(obj){
      var self = this
      var _array = []
      self.forEach(function(e){
        if(e != obj){
          _array.push(e)
      })
      return _array
    ...
    
  5. remove(object)
    Array.prototype.remove = function(object) {
        var index = this.indexOf(object);
        if (index >= 0) {
            return this.splice(index, 1);
        else {
            return this;
    };
    ...
    
  6. remove(object)
    Array.prototype.remove = function(object) {
      k = this.indexOf(object);
      while(k != -1) {
        this.splice(k, k+1);
        k = this.indexOf(object);    
      return this;
    
  7. remove(s)
    Array.prototype.remove = function(s) {
        var i = this.indexOf(s);
        if(i != -1) {
            this.splice(i, 1);
    
  8. remove(s)
    Array.prototype.remove = function(s) {
      for (var i = 0; i <  this.length; i++) {
        if(s == this[i]) {
          this.splice(i, 1);
    
  9. remove(s)
    Array.prototype.remove = function(s) {
      if(undefined!=s.position){
        for (var i = 0; i < this.length; i++) {  
              if (s.position == this[i].position)  
                  this.splice(i, 1);  
      }else{
        for (var i = 0; i < this.length; i++) {  
              if (s == this[i])  
    ...