카테고리 없음
Til (2022.12.08)
js 메소드 //객체 생성자 function Item(title, price) { //this = {}; this.title = title; this.price = price; this.showPrice = function () { console.log(`가격은 ${price}원 입니다.`); }; //return this; } //new 중요 (위에 함수는 리턴이 없기 때문에 undefind만 나옴 생성자 함수는 new로 붙여야함) const item1 = new Item("인형", 3000); const item2 = Item("가방", 6000); const item3 = new Item("지갑", 7000); console.log(item1, item2, item3); item3.showPrice..