Here you can find the source of copy( ()
/**/*w w w. ja v a 2 s .c o m*/ * copy an array */ Array.prototype.copy = (function () { var f = function (o) { return o; }; return function () { return this.map(f); }; }());
Array.prototype.copy = function(){ var tmp = []; for (var i = 0; i < this.length; i++) tmp.push(this[i]); return tmp;
Array.dim = function (n, e) { var a = [], i; for (i = 0; i < n; i += 1) { a[i] = e; return a; Array.prototype.copy = function () { return this.slice(0); ...
Array.prototype.copy = function(){ return this.filter(function(){return true;}); };
Array.prototype.copy = function () { return this.slice(0);