number with commas 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 javascript
var n = 34523453.345
n.toLocaleString()
"34,523,453.345"
Example 3: javascript format numbers with commas
function numberWithCommas(x) {
return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}
Example 4: add comma to number in javascript
value.toLocaleString()
"1,000"
Example 5: format number with commas js
foramtNumber = (num,div=",")=>{
return num.toString().replace(/\B(?=(\d{3})+(?!\d))/g, div);
}
Example 6: commas for thousands js
var number = 3500;
console.log(new Intl.NumberFormat().format(number));
// → '3,500' if in US English locale