<!DOCTYPE html>
<html>
<body>
<h1>JavaScript Спадкування класів</h1>
<p>Використовуйте ключове слово "extends", щоб успадкувати всі методи від іншого класу.</p>
<p>Використовуйте метод "super", щоб викликати батьківську функцію-конструктор.</p>
<p id="demo"></p>
<script>
class Car {
constructor(brand) {
this.carname = brand;
}
present() {
return 'I have a ' + this.carname;
}
}
class Model extends Car {
constructor(brand, mod) {
super(brand);
this.model = mod;
}
show() {
return this.present() + ', it is a ' + this.model;
}
}
const myCar = new Model("Ford", "Mustang");
document.getElementById("demo").innerHTML = myCar.show();
</script>
</body>
</html>