1. __proto__ 는 구식입니다. 더는 사용하지 않는 것이 좋습니다. 대신 아래와 같은 모던한 메서드들을 사용하면 좋습니다. Object.create( proto, [descriptors] ) - [[Prototype]] 이 proto인 빈 객체를 생성합니다. ( 설명자는 옵션입니다. Object.getPrototypeOf( obj ) - obj의 [[Prototype]] 을 리턴합니다. Object.setPrototypeOf( obj, proto ) - obj의 [[Prototype]] 을 proto로 설정합니다. let animal = { walk : true } let human = Object.create(animal) console.log(human.walk) // true console...