多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
### 定义类 ``` class Person{ constructor(name, age){ this.name=name; this.age=age; } //定义方法 run(){ console.log(`一个${this.age}岁的小伙子在跑步`); } //静态方法 static say(){ } } var p1=new Person("sn",11); p1.run(); //访问静态方法 Person.say(); ```