Answers for "how to print number with commas as thousands separators jquery"

1

Print a number with commas as thousands separators in JavaScript

// 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"
Posted by: Guest on March-22-2022
8

How to print a number with commas as thousands separators in JavaScript

function numberWithCommas(x) {
    return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}
Posted by: Guest on July-29-2020

Code answers related to "how to print number with commas as thousands separators jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language