class 클래스명 extends 생성클래스명 {} // 부모 요소를 계승하는 새로운 클래스 선언
클래스에는 다른 클래스의 속성과 메소드를 그대로 이어받는 계승의 기능이 있습니다. MyParent 클래스를 계승하는 MyChild 클래스의 샘플을 확인합니다.
class MyParent {
parentMethod() {
console.log('MyParent 클래스의 메소드입니다.');
}
}
class MyChild extends MyParent {
constructor() {
super();
}
childMethod() {
console.log('MyChild 클래스의 메소드입니다.');
}
}
const myParent = new MyParent();
myParent.parentMethod();
const myChild = new MyChild();
myChild.parentMethod();
myChild.childMethod();