본문 바로가기

JavaScript/methods

[javacript] JavaScript 통화 형식 지정하기 (Intl.NumberFormat)

 

달러

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)}

 

아래처럼 사용해주면 된다