Answers for "format number to currency javascript with neagavtic sign"

0

javascript format number as currency

const formatter = new Intl.NumberFormat('en-US', {
  style: 'currency',
  currency: 'USD',
  minimumFractionDigits: 2
})

formatter.format(1000) // "$1,000.00"
formatter.format(10) // "$10.00"
formatter.format(123233000) // "$123,233,000.00"
Posted by: Guest on June-02-2021

Code answers related to "format number to currency javascript with neagavtic sign"

Code answers related to "Javascript"

Browse Popular Code Answers by Language