تُعدّ وراثة الأصناف واحدةً من الطرائق لتوسعة أحد الأصناف لديك، أي أن نقدّم وظائف جديدة لأحد الأصناف علاوةً على ما لديه.
عبارة التوسعة extends
لنقل بأنّ لدينا صنف الحيوان Animal:
class Animal {
constructor(name) {
this.speed = 0;
this.name = name;
}
run(speed) {
this.speed += speed;
alert(`${this.name} runs with speed ${this.speed}.`); // يركض حيوان كذا بالسرعة كذا
}
stop() {
this.speed = 0;
alert(`${this.name} stands still.`); // يقف حيوان كذا في م