Node.js examples for Array:Remove Element
Write a function that removes all elements with a given value
/* Write a function that removes all elements with a given value *///from w w w. ja v a 2 s. c om Array.prototype.remove = function(element){ for (var i = 0; i < this.length; i++) { if(this[i] == element){ this.splice(i, 1); i--; } }; } var arr = [1,2,1,4,1,3,4,1,111,3,2,1,'1']; var arr2= [2,2,2,2,3,3,2,2,1,1,1,3,2,321,2,3,4,2,2,2,2,1,1,2,3,2,2,1,1,1,2,3,4,2,5] console.log('The full array is ' + arr); arr.remove(1); console.log('The array without selected elements is ' + arr) arr2.remove(2); console.log(arr2)