外观
在使用 this 或 super 之前需要调用 super()。
this
super
super()
获取器应该始终返回值。如果不返回,很可能是错误。
class A1 extends B { constructor() { // super() needs to be called first this.a = 0; super(); } }