6-8. 매개변수 객체 만들기
적용 시점
절차
예시
❌Before
const getClothesInfo =
(clothesType: string, clothesCategory: string, lowPrice: number; highPrice: number) => {
// 비즈니스 로직
}
...
const clothesType = '반바지';
const clothesCategory = '남성복';
const lowPrice = 40000;
const highPrice = 60000;
const res = getClothesInfo(clothesType, clothesCategory, lowPrice, highPrice);⭕After
Last updated