class Bagic{
constructor(width,height){
this.width = width;
this.height = height;
}
draw(){
console.log(`내 물건 크기의 넓이는 ${this.width} 이고 높이는 ${this.height} 입니다. `);
}
getArea(){
return this.width * this.height ;
}
}
class Triangle extends Bagic{
//extends 로 기존의 Bagic class가 가지고 있는 요소들이 그대로 새로만든 Triangle class에 상속된다.
getArea(){
return (this.width * this.height) / 2;
}
};
const triangle = new Triangle(20,100);
console.log(triangle.getArea());