자식 클래스에서 부모 클래스를 호출할 수 있습니다.
class Person {
constructor(name, value) {
this.name = name;
this.value = value;
}
}
class PersonPlus extends Person {
constructor(name, value, end)}
super(name, value);
this.end = end;
}
}