Nodejs Array Remove Object remove(obj)

Here you can find the source of remove(obj)

Method Source Code

Array.prototype.remove = function(obj) {
   var index = this.indexOf(obj);
   if (index > -1) {
      this.splice(index, 1);// w  ww  .  j a va  2  s  .co m
   }
};

Related

  1. remove(obj)
    Array.prototype.remove = function(obj) {
      var index = this.indexOf(obj);
      if(index !== -1) {
        return this.splice(index, 1)[0];
      return undefined;
    
  2. remove(obj)
    Array.prototype.remove = function(obj) { 
        for (var i = 0; i < this.length; i++){ 
            var temp = this[i];
            if (obj != "" && !isNaN(obj)) {
                temp = i; 
            if (temp == obj) { 
                for (var j = i; j <this.length; j++) { 
                    this[j] = this[j+1]; 
    ...
    
  3. remove(obj)
    Array.prototype.remove = function(obj) {
      for(var i = 0; i < this.length; i++){
        if(this[i] === obj){
          this.splice(i, 1);
      return this;
    };
    
  4. remove(obj)
    Array.prototype.remove = function (obj) {
        var tempList = new Array();
        for (var i = 0, ti = 0; i < this.length; i++) {
            if (this[i] != obj) {
                tempList[ti] = this[i];
                ti++;
        this.setArray(tempList);
    ...
    
  5. remove(obj)
    Array.prototype.remove = function(obj) {
      var idx = this.indexOf(obj);
      if(idx == -1) { return false }
      this.splice(idx, 1);
      return true
    };
    Array.prototype.contains = function(i) { return this.indexOf(i) >= 0 };
    
  6. remove(obj)
    Array.prototype.remove = function(obj) {
      var index = -1;
      for(var i = 0; i < this.length; i++) {
        if(this[i] == obj) {
          index = i;
          break;
      if(index != -1) {
    ...
    
  7. remove(obj)
    Array.prototype.remove = function(obj){
      var i=0,n=0;
      for(i=0;i<this.length;i++){
        if(this[i] != obj){
          this[n++] = this[i];
      if(n<i){
        this.length = n;
    ...
    
  8. remove(obj)
    Array.prototype.remove = function(obj){
      return this.splice(this.indexOf(obj), 1);
    
  9. remove(obj)
    Array.prototype.remove=function(obj){
        for(var i=0;i<this.length;i++){
            if(this[i]==obj){
                this.splice(i,1);
                return this;
    function isCollided(obj1,obj2){
    ...