How to print exponential notation of a number in TypeScript

1 Answer

0 votes
const num:number = 748374

console.log(num.toExponential())

console.log(num.toExponential(1))

console.log(num.toExponential(2))

console.log(num.toExponential(3))
 
 
     
     
/*
run:

"7.48374e+5" 
"7.5e+5" 
"7.48e+5" 
"7.484e+5" 
     
*/

 



answered Aug 11, 2022 by avibootz

Related questions

1 answer 108 views
1 answer 144 views
1 answer 114 views
3 answers 325 views
2 answers 184 views
2 answers 196 views
...