@Class
ES6 新增数据类型
数据类型仍然归类于 Object
class 类
是一种蓝图或模板
用于创建具有相同属性和方法的对象
使用关键字 class 定义;类名采用大驼峰
class Stu {
  constructor(name, age) {
    this.name = name
    this.age = age
  }
  getAge() {
    return this.age
  }
}
let stu = new Stu('gl', 18)
console.log(stu.getAge());      
extends 继承
继承父类的非私有属性和方法
可以增加自己专有的属性和方法
class Clert extends Stu {
  constructor(name, age, position) {
    super(name, age)
    this.position = position
    console.log('clert init');
  }
  doPosition() {
    console.log('my position');
  }
}