**
- 继承 extends
- 继承后一定要在constructor第一行加上super()
- 类似call继承
- 继承方式,类似寄生组合继承
```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 ```