javascript code to add commas in number while typing 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"