Answers for "format number with comma and decimal javascript"

36

node js format number 2 decimals with comma

function numberWithCommas(x) {
  return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',');
}
Posted by: Guest on June-13-2020
3

format number javascript with comma

formatedNumber = new Intl.NumberFormat().format(2561556862056.12)
console.log(formatedNumber) // "2,561,556,862,056.12"
Posted by: Guest on October-03-2021

Code answers related to "format number with comma and decimal javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language