Answers for "how to make a number only 2 decimal places in js"

11

javascript show 2 decimal places

var myNumber=12.2345;
var myNumberWithTwoDecimalPlaces=parseFloat(myNumber).toFixed(2); //12.23
Posted by: Guest on July-31-2019
1

rounding number to x decimals javascript

let num = 12.5452411;
num = num.toFixed(3); // 12.545
Posted by: Guest on March-03-2020

Code answers related to "how to make a number only 2 decimal places in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language