priceFormat
숫자 세 자리수마다 콤마(,)를 찍어줍니다.
utils/price-format.ts
export function priceFormat(price: number) {
return Intl.NumberFormat('us').format(price).toString()
}
숫자 세 자리수마다 콤마(,)를 찍어줍니다.
export function priceFormat(price: number) {
return Intl.NumberFormat('us').format(price).toString()
}
On This Page