合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
### 定义类 ``` 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(); ```