Javascript convert decimal number into integer w/ comma formatting

6 Views Asked by At

We have a number like 23456.888 and want to display it rounded and with a comma as 23,457. What we've tried:

23456.888.toFixed(0) // 23457
23456.888.toLocaleString('en-US') // 23,456.888
23456.888.toFixed(0).toLocaleString('en-US') // 23457
0

There are 0 best solutions below