0.1 + 0.2 == 0.3
returns false
0.1 + 0.2 = 0.30000000000000004
Any ideas on why this happens?
|
6
|
0.1 + 0.2 == 0.3 0.1 + 0.2 = 0.30000000000000004 Any ideas on why this happens?
|
||||||||||
|
|
|
All floating point math is like this and is based on the IEEE standard. You need to never compare with == but instead compare the absolute value of their differences, and make sure that this difference is smaller than some error constant which is a very very small number.
For the exact reason why, please read this paper. |
|||
|
|
|
|
Floating point numbers. |
||||
|
|
|
They are floats. |
||||||||||
|
|
|
Floating point rounding errors. 0.1 cannot be represented as accurately in base-2 as in base-10 due to the missing prime factor of 5. Just as 1/3 takes an infinite number of digits to represent in decimal, but is "0.1" in base-3, 0.1 takes an infinite number of digits in base-2 where it does not in base-10. And computers don't have an infinite amount of memory. |
||
|
|
|
|
Floating point variables typically have this behaviour. It's caused by how they are stored in hardware. For more info check out the Wikipedia article on floating point numbers. |
||
|
|
|
|
JavaScript treats decimals as floating point numbers, which means operations like addition might be subject to rounding error. You might want to take a look at this article: What Every Computer Scientist Should Know About Floating-Point Arithmetic |
||||
|
|
|
Floating point rounding error. From http://docs.sun.com/source/806-3568/ncg_goldberg.html:
|
||
|
|
|
|
When you convert .1 or 1/10 to base 2 (binary) you get a repeating pattern after the decimal point, just like trying to represent 1/3 in base 10. The value is not exact, and therefore you can't do exact math with it using normal floating point methods. |
|||
|
|
|
Try rounding it off using toFixed().
|
||
|
|
|
|
Don't forget the comp.lang.javascript FAQ which covers this and many other questions. |
||
|
|
|
|
Yes, it's 'broken', and is proposed to be fixed in the next version with support for decimal numeric values. |
||
|
|