how to add thousand separator in javascript code example
Example 1: js format number thousands separator
function numberWithCommas(x) {
return x.toString().replace(/\B(?<!\.\d*)(?=(\d{3})+(?!\d))/g, ",");
}
Example 2: add comma to number javascript
var n = 34523453.345
n.toLocaleString()
"34,523,453.345"
Example 3: javascript friendly number format with commas
//ES6 Way
const numberWithCommas = (x) => {
return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',');
}