프로토타입과 클래스, 프로토타입 체인에 대해 학습합니다.
비교연산자로 확인
// JavaScript const arr = []; // const arr = new Array(); Array.prototype.constructor === Array; // true Array.prototype === arr.__proto__; // true Array.prototype.push === arr.push // true