// 1. Array const array = [1, 2, 3]; const push1 = array.push(4); console.log(array); /* 2. New Construction this는 CreateProduct 함수를 호출하는 시점에 생성된 객체를 가리킵니다. 따라서, this.radius와 this.color는 각 객체의 radius와 color 속성에 값을 할당하게 됩니다. this.discount는 Product 객체에 discount 메서드를 추가하고, 해당 메서드를 객체의 속성으로 등록합니다. */ function CreateProduct(title, price) { let store = "1000"; //private //private된 변수를 보이게하기 (Get) this..