class Person{ constructor(name,birthday){ this.name = name; this.birthday= birthday; } intro(){ return '${this.name},${this.birthday}'; } }
class Chef extends Person{ constructor(name,birthday){ super(name,birthday); } } let zhangsan = new Chef('zhangsan','1988-04-01'); console.log(zhangsan.intro()); //zhangsan,1988-04-01