JavaScript/methods
[javacript] JavaScript 통화 형식 지정하기 (Intl.NumberFormat)
머지?는 병합입니다
2024. 11. 6. 10:54
달러
export const currencyFormatter = new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'USD',
minimumFractionDigits: 2,
})
원화
export const currencyFormatter = new Intl.NumberFormat('ko-KR', {
style: 'currency',
currency: 'KRW',
minimumFractionDigits: 0
})
사용할 때는
{urrencyFormatter.format(meal.price)}
아래처럼 사용해주면 된다