Answers for "format number js comma"

8

javascript format numbers with commas

function numberWithCommas(x) {
    return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}
Posted by: Guest on July-29-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 "Javascript"

Browse Popular Code Answers by Language