const healthObj = {
showHealth : function () {
console.log(`오늘 운동시간 : ${this.healthTime}`);
},
setHealth : function (newTime) {
this.healthTime = newTime;
}
}
const newobj = Object.setPrototypeOf({
name : "nsunny",
lastTime : "12:30"
}, healthObj);
console.log(newobj);
//parent
const healthObj = {
showHealth : function () {
console.log(`오늘 운동시간 : ${this.healthTime}`);
},
setHealth : function (newTime) {
this.healthTime = newTime;
}
}
//child obj
const healthChildObj = {
getAge : function () {
return this.age;
}
}
//healthChildObj의 prototype으로 healthObj를 추가한다.
Object.setPrototypeOf(healthChildObj, healthObj);
const childObj = Object.setPrototypeOf({
age : 20
}, healthChildObj);
childObj.setHealth("11:55");
childObj.showHealth();
console.log(childObj);
일종의 상속. prototype chain을 연결해서 다른 객체에 있는 메소드를 사용할 수 있다.