Here you can find the source of toString()
Array.prototype.toString = function () { // add a variable with beginning string // push everyting in the Array var add = '[' this.map(function(elm) { return add + '['; })// ww w. ja v a 2s . co m }
Array.prototype.toString = function () return '[' + this.join(',') + ']';
Array.prototype.toString = function(){ return "["+this.join(", ")+"]";
Array.prototype.toString = function () { var str = "[" for(var i = 0; i < this.length; i++) { if(typeof this[i] === "string") { str += "'" + this[i] + "'"; } else { str += this[i].toString(); if(i < this[i].length) { ...
Array.prototype.toString = function () { var str = []; for (var i = 0; i < this.length; i++) { if (Array.isArray(this[i])) { str.push(this[i].toString()); }else if(typeof this[i] == 'string') { str.push("'" + this[i] + "'") else { ...
Array.prototype.toString = function () { return '(' + this.map(function(item) { return ''+item; }).join(' ') + ')'; };
Array.prototype.toString = function (delim) { var ret = ""; var i; for (i = 0; i < this.length; i++) { if (i > 0) { ret = ret.concat(delim); ret = ret.concat(this[i]); return ret;