js中,类的继承
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js中,类的继承相关的知识,希望对你有一定的参考价值。
创建类:
class student{
constructor(name,age){
this.name=name;
this.age=age;
}
learn(){
console.log(‘我是学生‘);
}
}
类的继承:
class child extends Student{
constructor(name,age){
super (name,age);
}
coolings(){
console.log(‘cooling‘);
}
}
以上是关于js中,类的继承的主要内容,如果未能解决你的问题,请参考以下文章