1、类字段声明
在 ES13 之前,类字段只能在构造函数中声明, ES13 消除了这个限制
// 之前
class Car {
constructor() {
this.color = 'blue';
this.age = 2
在 ES13 之前,类字段只能在构造函数中声明, ES13 消除了这个限制
// 之前
class Car {
constructor() {
this.color = 'blue';
this.age = 2