**

    1. 继承 extends
    2. 继承后一定要在constructor第一行加上super()
      1. 类似call继承
    3. 继承方式,类似寄生组合继承 ```javascript class Parent { constructor() { this.x = 100; }
      // 原型上的方法 get() { return this.x;e } }

    // 继承 extends // 继承后一定要在constructor第一行加上super class Child extends Parent { constructor() { super(); this.y = 200; } getY() { return this.y; } }

    // ES6中的class无法当普通函数执行,只能new ```