✏️6.3 변수 추출하기 ( Extract Variable)
return order.quantity * order.itemPrice -
Math.max(0, order.quantity - 500) * order.itemPrice * 0.05 +
Math.max(order.quantity * order.itemPrice * 0.1, 100);const basePrice order.quantity * ordeer.itemPrice;
const quantityDiscount = Math.max(0, order.quantity - 500) * order.itemPrice * 0.05;
const shipping = Math.max(order.quantity * order.itemPrice * 0.1, 100);
return basePrice - quantityDiscount + shipping;🧷 배경
🧷 절차
🧷 리팩터링 전
🧷 리팩터링 후
Last updated