728x90 300x250 SMALL 클래스 상속1 클래스 상속 프로토 타입 vs Class 문법 프로토타입 방식 // 부모 생성자 함수 function Parent(name) { this.name = name; } // 부모의 프로토타입에 메서드 추가 Parent.prototype.greet = function() { console.log(`Hello, ${this.name}!`); }; // 자식 생성자 함수 function Child(name, toy) { // 부모 생성자 호출 및 속성 상속 Parent.call(this, name); // Parent함수를 this와 함께 호출 name을 매개변수로 넘김 this.toy = toy; } // 프로토타입 체인을 통한 상속 설정 Child.prototype = Object.create(Parent.prototype); //Parent.protot.. 2024. 1. 1. 이전 1 다음 728x90 반응형 LIST