🍀 오늘의 날짜 : 23년 03월 16일 🍀 오늘의 주제 : CLASS 의 상속과 프로토타입 🔖 Super 참조 CLASS 상속할 때, super 키워드를 이용해서, 상위 클래스의 constructor을 호출 할 수 있습니다만, 메소드 내에서 super을 참조하여, 상위 클래스의 메서드를 호출 할 수도 있습니다. class Rectangle { // 1. 상위 클래스 constructor(width, height) { this.width = width; this.height = height; } getArea() { return this.width * this.height; } toString() { return `width = ${this.width}, height = ${this.height}`; }..