✏️6.4 변수 인라인하기 (Inline Variable)
let basePrice = anOrder.basePrice;
return (basePrice > 1000);return anOrder.basePrice > 1000;🧷 배경
🧷 절차
Last updated
let basePrice = anOrder.basePrice;
return (basePrice > 1000);return anOrder.basePrice > 1000;Last updated