About toFixed() in JS | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grátis
0

About toFixed() in JS

I met with a challenge question like this: let sum = 0.1 + 0.2; console.log(+sum.toFixed(2)); The answer is 0.3. Why? I thought it should be 0.30. - Confused Boy

16th Apr 2019, 2:29 PM
Zhiming Li
Zhiming Li - avatar
2 Respostas
+ 3
Typecasted back into Number due to the plus operator before sum. https://code.sololearn.com/W8ZgKlTH97cJ/?ref=app 換一個說法: 如果只有 sum.toFixed(2),結果是 0.30,因為是String。 但現在有 +號在前面,這個 +號因為前方無String,而後方可以parseFloat(),所以被判定為 Number.prototype.addition() ,而不是String.prototype.concantentation()。因此 0.30被轉化回Number,而小數點二位的0不是 significant figure,所以在過程中被捨去了。
17th Apr 2019, 10:42 AM
Gordon
Gordon - avatar
0
Gordon 谢谢🙂
19th Apr 2019, 11:43 AM
Zhiming Li
Zhiming Li - avatar