How to round to 2 decimal places in TypeScript

4 Answers

0 votes
let num: number = 82.4780;
let rounded: string = num.toFixed(2);
console.log(rounded);
 
num = 82.6780;
rounded = num.toFixed(2);
console.log(rounded);
 
 
 
/*
run:
 
"82.48" 
"82.68" 
 
*/

 



answered May 15 by avibootz
0 votes
let num: number = 82.4780;
let rounded: number = 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 by avibootz
0 votes
let strNum: string = "82.4780";
let rounded: string = 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 by avibootz
0 votes
function formatToTwoDecimals(num: number): number {
    return Math.round(num * 100) / 100;
}
 
let num: number = 82.4780;
let rounded: number = formatToTwoDecimals(num);
console.log(rounded);
 
num = 82.6780;
rounded = formatToTwoDecimals(num);
console.log(rounded);
 
 
 
/*
run:
 
82.48 
82.68
 
*/

 



answered May 15 by avibootz

Related questions

...