Design Pattern
Constructor Pattern
📌 목차 Object Creation Constructor in es5 fucntion Constructor in prototype Constructor in Class 📌 Object Creation 빈 Object를 생성하는 3가지 방법 // 1. const object1 = {}; // 2. const object2 = Object.create(Object.prototype); // 3. const object3 = new Object(); Object에 key와 value를 할당하는 4가지 방법 Dot Syntax newObject.key = "value"; Square Syntax newObject["key"] = "value"; Object.defineProperty Syntax Object...