코드 복사 코드는 다음과 같습니다. ; 객체 지향 상속 예 window.onload = function(){ <BR>function parent(age,name){ <BR>this.age = age; <BR>this.name = name; <BR>} <BR>parent.prototype.show = function(){ <BR>alert('부모 메소드'); <BR>} <BR>function child(age,name,job){ <BR>parent.apply(this,arguments) ; <BR>this.job = job; <BR>} <BR>(function(){ <BR>for(var i in parent.prototype){ <BR>child.prototype[i]=parent.prototype[i ] <BR>} <BR>})(); <BR><br>var b = 새 부모(14,'Xia Ke Xing') <br>var a = 새 자식(15,'늑대남자', '시아 케') <BR><BR>} <br> h1>객체 지향 상속 예 상속성에 대한 인터뷰 질문을 자주 봅니다. 실제로 상속이란 속성과 메서드를 상속받는다는 뜻입니다. 상위