7-4. 임시 변수를 질의 함수로 바꾸기
적용 시점
절차
예시
❌Before
const ProductInfo {
constructor({ product, discountPercent, price, quantity }) {
this._product = product;
this._discountPercent = discountPercent,
this._price = price;
this._quantity = quantity;
}
get discountPrice() {
const basePrice = this._price * this._quantity;
return basePrice * this._discountPercent,
}
}⭕After
Last updated