프로토타입1 [javascript] 모던 자바스크립트 입문 9.객체(프로토타입) 모던 자바스크립트 입문 9장 객체 부분을 읽고 정리한 내용입니다. 1. 객체의 생성 // 1. 객체 리터럴로 생성 const fruit = { name = 'apple', season = 'fall'}; // 2. 생성자로 생성 function Fruit(name, season) { this.name = name; this.season = season; } const fruit = new Fruit('apple', 'fall'); // 3. Object.create로 생성 const fruit = Object.create(Object.prototype, { name: { value: 'apple', writable: true, enumerable: true, configuragle: true }, sea.. 2021. 1. 21. 이전 1 다음