프로토타입은 어떤 객체의 상위(부모) 객체의 역할을 하는 객체다.

// 함수 객체의 prototype은 데이터 프로퍼티다.
Object.getOwnPropertyDescriptor(function() {}, 'prototype');
// {value: {...}, writable: true, enumerable: false, configurable: false}

getter / setter ?