是否可以在对象破坏分配中使用保留关键字。
具体来说,我正在尝试使用名为 default 的属性来处理 JSON。
//Doesn't compile
class FooBar {
constructor({foo, default}) {
this.foo = foo;
this.default = default;
}
}
/* json from server {foo: "bar", default: true} */
new FooBar(json);