LittlebearHat

Results 1 issues of LittlebearHat

个人写法不习惯用class语法糖 ``` const danli = function (name) { this.name = name; this.instance = null; }; danli.prototype.getName = function () { console.log(this.name); }; danli.getInstance = function (ret) { if (!this.instance) {...