Answers for "add commas and 2 decimal places javascript"

2

add commas to a number javascript

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

javascript display 2 number after comma

var num = Number(0.005) // The Number() only visualizes the type and is not needed
var roundedString = num.toFixed(2);
var rounded = Number(roundedString); // toFixed() returns a string (often suitable for printing already)
Posted by: Guest on July-15-2021

Code answers related to "add commas and 2 decimal places javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language