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 93 views
1 answer 129 views
1 answer 105 views
3 answers 288 views
2 answers 173 views
2 answers 178 views
...