使用extends
可以实现类的继承,继承后的子类,拥有父类所有的属性、方法。
<!doctype html>
<html>
<head>
</head>
<body>
<script>
// 父类、超类
class Animal {
eat() {
console.log('我会吃')
}
run() {
console.log('我会跑')
}
}
// 子类继承父类
class Bird extends Animal{
fly(){
console.log('我会飞')
}
}
const bird = new Bird()
bird.eat()
bird.run()
bird.fly()
const pig = new Animal()
pig....