Nodejs Array to String Convert toString()

Here you can find the source of toString()

Method Source Code

Array.prototype.toString = function(){
   /*ww  w  . ja  v a 2 s .c om*/
   return "["+this.join(", ")+"]";
}

Related

  1. toString()
    Array.prototype.toString = function ()
        return '[' + this.join(',') + ']';
    
  2. toString()
    Array.prototype.toString = function () {
      var add = '['
      this.map(function(elm) {
        return add + '[';
      })
    
  3. toString()
    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) {
    ...
    
  4. toString()
    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 {
    ...
    
  5. toString()
    Array.prototype.toString = function () {
      return '(' + this.map(function(item) { return ''+item; }).join(' ') + ')';
    };