** 类的继承extends和super关键字 ** 2.1继承 现实中的继承:子承父业,比如儿子继承父亲的姓 程序中的继承:子类可以继承父类的一些属性和方法,只需写上entends就可以子类继承父类 语法: class Father{//父类 } class Son entends Father {//子类继承父类 } 例: class Father { constructor(){ } money(){ console.log('100元') } } class Son ext