Fish Wang says to SITCON BOT Testpool/js function Person () { this.d = ''; } Person.prototype.toString = function () { return this.d } Person.prototype.country = function (str) { this.d = '[' + str + ']' + this.d; return this; } Person.prototype.name= function (str) { this.d = this.d + str; return this; } var mmis = new Person; console.log('' + mmis .name('mmis ').country('🇹🇼'))at Fri, May 13, 2016 12:16 AM