//객체 가장을 사용하여 js 상속 구현
함수 A(색상) {
this.Acolor = color;
this.AshowColor = function() {
document.writeln("Acolor: " this.Acolor)
}
}
function B(color, name) {
//A에 newMethod를 할당하고 A의 생성자를 호출합니다.
this.newMethod = A;
this.newMethod(color); /그런 다음 나중에 호출할 수 없도록 A에 대한 참조를 삭제합니다.
delete this.newMethod
this.Bname = name
this.BshowName = function() {
document. writeln ("Bname: " this.Bname)
}
}
var objA = new A("red")
objA.AshowColor(); writeln ("----------------");
var objB = new B("black", "demo")
objB.AshowColor(); 🎜 >objB.BshowName();
document.writeln("----------------")