Here you can find the source of remove(element)
// Problem 2. Remove elements // Write a function that removes all elements with a given value. Attach it to the array type. Array.prototype.remove = function (element) { var clearedArray = []; for (var i = 0; i < this.length; i += 1) { if (this[i] !== element) { clearedArray.push(this[i]);/*from ww w .j av a2 s .c om*/ } } return clearedArray; }; var arr = [1, 2, 1, 4, 1, 3, 4, 1, 111, 3, 2, 1, '1']; console.log(arr.remove(1)); // Expected: arr = [2,4,3,4,111,3,2,'1'];
Array.prototype.remove = function(element) { var i=0; for(i;i<this.length;i+=1) { if(this[i]===element) this.splice(i, 1); --i; }; var arr = [1,2,1,4,1,3,4,1,111,3,2,1,'1']; console.log(arr); arr.remove(1); console.log(arr);
Array.prototype.remove = function (element) { var result = [], index, len; for(index = 0, len = this.length; index < len; index += 1) { if (this[index] !== element) { result.push(this[index]); return result; }; var arr = [1,2,1,4,1,3,4,1,111,3,2,1,'1']; console.log(arr.remove(1));
Array.prototype.remove = function(element) { var i = this.indexOf(element); if(i != -1) { this.splice(i, 1);
var arr = [1, 2, 1, 4, 1, 3, 4, 1, 111, 3, 2, 1, '1']; Array.prototype.remove = function (element) { var len = this.length; for (var i = 0; i < len; i++) { if (this[i] === element) { this.splice(i, 1); i -= 1; return this; arr.remove(1); console.log(arr.join(', '));
Array.prototype.remove = function(element){ var newArray = new Array(); for(var current in this){ if(this[current] == element){ this.splice(current, 1);
Array.prototype.remove = function(element) { var arr = this; var final = []; for (var i = 0; i < arr.length; i++) { if(arr[i] !== element) { final.push(arr[i]); return final; ...
Array.prototype.remove = function (element) { for (var ind = 0; ind < this.length; ind++) { if (this[ind] === element) { this.splice(ind, 1); --ind; return this; var arr = [1, 2, 3, 4, 1, 2, 3, 1, 5, 1, 2,]; jsConsole.writeLine(arr.join(', ')); arr.remove(1); jsConsole.writeLine(arr.join(', '));
Array.prototype.remove=function(element){ for(var i=0;i<this.length;i+=1){ if(this[i]===element){ this.splice(i,1); --i; return this; var array=[1,2,1,3,1,4,2,4,5,3,4,6]; console.log(array.join(', ')); array.remove(1); console.log(array.join(', '));
Array.prototype.remove=function(element) var len; for(ind=0,len=this.length;ind<len;ind+=1) if(this[ind]===element) this.splice(ind,1); ind-=1; ...