谨慎电源

文章
6
资源
0
加入时间
2年10月21天

class的私有方法跟公有方法

//类的私有方法与公有方法function Foo(name) { function private() { console.log('私有方法') } private() this.name = name this.getName = function () { console.log('公有方法',this.name)...