Answers for "javascript numbers decimal with comma"

22

number with commas js

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

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 "javascript numbers decimal with comma"

Code answers related to "Javascript"

Browse Popular Code Answers by Language