1. Prototype 자바스크립트의 모든 객체는 부모 객체와 연결되어 있어 부모 객체의 프로퍼티 또는 메서드를 상속받아 사용할 수 있다. 이때, 부모 객체를 prototype(프로토타입)이라고 한다. -> __proto__(프로토타입 링크) : 부모 함수의 프로토타입을 가리킨다. const Human = function(name) { this.name = name; } Human.prototype.sleep = function() {}; const student = new Human('steve'); student.__proto__ === Human.prototype // true 2. Prototype Chain 프로토타입 객체가 상위 프로토타입 객체로부터 프로퍼티와 메서드를 상속받을 수 있는 것처럼..