[javascript] setPrototypeof

sunny·2021년 1월 18일
0

🐣 javascript ES6

목록 보기
12/15
post-thumbnail

setPrototypeof

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);

결과


객체간 prototype chain생성하기

//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을 연결해서 다른 객체에 있는 메소드를 사용할 수 있다.

profile
blog 👉🏻 https://kimnamsun.github.io/

0개의 댓글

관련 채용 정보