Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,895 questions

51,826 answers

573 users

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, 2025 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, 2025 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, 2025 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, 2025 by avibootz
...