다음과 같이 Human 이라는 클래스를 구현해 봅시다.
class Human{
constructor(name, age){
this.name = name;
this.age = age;
}
sleep(){
console.log(`${this.name}은 잠에 들었습니다.`)
}
}
let kimcoding = new Human('김코딩',30);
Human.prototype.constructor === Human; //true
Human.prototype === kimcoding.__proto__; //true
Human.prototype.sleep === kimcoding.sleep; //true
다음 그림은 반드시 기억하자.