add commas to number in javascript code example
Example 1: number with commas js
function numberWithCommas(x) {
return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',');
}
Example 2: add comma to number in javascript
value.toLocaleString()
"1,000"