Here you can find the source of remove(index)
Array.prototype.remove = function(index) { this.splice(index,1);/*ww w. j a v a 2 s . co m*/ };
Array.prototype.remove = function(i) { if (typeof i != "number") i = this.indexOf(i); this.splice(i,1); return i; Array.prototype.insert = function(v, i) { if (arguments.length == 1) i = this.length; ...
Array.prototype.remove = function(index) { this.splice(index, 1); return this; };
Array.prototype.remove = function(index) { return this.splice(index, 1);
'use strict'; Array.prototype.remove = function (index) { return this.splice(index, 1);
Array.prototype.remove=function(index){ for(var i=0;i<this.length;i++){ if(i==index){ this.splice(i, 1); break;