xxxxxxxxxx
function addCommasToNumber(number) {
// Convert the number to a string
const strNumber = number.toString();
// Split the number into integer and decimal parts (if any)
const parts = strNumber.split('.');
const integerPart = parts[0];
const decimalPart = parts[1] || '';
// Add commas to the integer part
const integerWithCommas = integerPart.replace(/\B(?=(\d{3})+(?!\d))/g, ',');
// Combine the integer and decimal parts (if any) with commas
const numberWithCommas = decimalPart ? `${integerWithCommas}.${decimalPart}` : integerWithCommas;
return numberWithCommas;
}
// Example usage:
const number = 1234567.89;
const numberWithCommas = addCommasToNumber(number);
console.log(numberWithCommas); // Output: "1,234,567.89"
xxxxxxxxxx
function numberWithCommas(x) {
return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',');
}
xxxxxxxxxx
// A more complex example:
number.toLocaleString(); // "1,234,567,890"
// A more complex example:
var number2 = 1234.56789; // floating point example
number2.toLocaleString(undefined, {maximumFractionDigits:2}) // "1,234.57"
add commas to large numbers
xxxxxxxxxx
const number = 123456789;
const formattedNumber = number.toLocaleString("en-US");
console.log(formattedNumber); // 1,234,567,890
xxxxxxxxxx
let n = 234234234;
let str = n.toLocaleString("en-US");
console.log(str); // "234,234,234"
xxxxxxxxxx
var number = 3500;
console.log(new Intl.NumberFormat().format(number));
// → '3,500' if in US English locale
xxxxxxxxxx
function numberWithCommas(x) {
return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}