How to round to 2 decimal places in JavaScript

4 Answers

0 votes
let num = 82.4780;
let rounded = num.toFixed(2);
console.log(rounded);

num = 82.6780;
rounded = num.toFixed(2);
console.log(rounded);



/*
run:

82.48
82.68

*/

 



answered May 15, 2025 by avibootz
0 votes
let num = 82.4780;
let rounded = parseFloat(num.toFixed(2));
console.log(rounded);

num = 82.6780;
rounded = parseFloat(num.toFixed(2));
console.log(rounded);



/*
run:

82.48
82.68

*/

 



answered May 15, 2025 by avibootz
0 votes
let strNum = "82.4780";
let rounded = parseFloat(strNum).toFixed(2);
console.log(rounded);

strNum = "82.6780";
rounded = parseFloat(strNum).toFixed(2);
console.log(rounded);



/*
run:

82.48
82.68

*/

 



answered May 15, 2025 by avibootz
0 votes
function formatToTwoDecimals(num) {
    return Math.round(num * 100) / 100;
}

let num = 82.4780;
let rounded = formatToTwoDecimals(num);
console.log(rounded);

num = 82.6780;
rounded = formatToTwoDecimals(num);
console.log(rounded);



/*
run:

82.48
82.68

*/

 



answered May 15, 2025 by avibootz
edited May 15, 2025 by avibootz

Related questions

...