vote up 8 vote down star
6

0.1 + 0.2 == 0.3
returns false

0.1 + 0.2 = 0.30000000000000004

Any ideas on why this happens?

flag

Is it just me or is this the most common programming question of all time. – AnthonyWJones Feb 25 at 21:45
I'd say it's in the top ten – matt b Feb 25 at 21:49
Another candidate for the SO drinking game, along with HTML regexps, posting PHP code with injection holes, and gratuitous mentions of Jon Skeet. Dook dook dook! – bobince Feb 25 at 21:51
Jon Skeet would approve of your drinking game – stimms Feb 25 at 21:59
Clearly "how do I replace all these tags with a regex?" is the most popular question of all time, at least on SO – annakata Feb 26 at 9:25

11 Answers

vote up 48 vote down check

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.

x = 0.2;
y = 0.3;
equal = (Math.abs(x - y) < 0.000001)

For the exact reason why, please read this paper.

link|flag
vote up 0 vote down

Floating point numbers.

link|flag
I think there was a < 14sec difference in the post time of this vs. the +8. That's pretty harsh – TheTXI Feb 25 at 21:43
+1, we all posted this at nearly the same time. – Ed Swangren Feb 25 at 21:45
vote up 0 vote down

They are floats.

link|flag
Why the downvote eh? – Ed Swangren Feb 25 at 21:43
@Ed: Probably because our posts were seen as copies of the top vote getter, even though all our posts were made within less than a minute of one another. – TheTXI Feb 25 at 21:44
Seriously, leave a comment if you think this is wrong. The OP is more than capable of figuring out what floating point numbers are. – Ed Swangren Feb 25 at 21:45
@Ed: I voted you up anyway. No reason to get punished just because one answer went in 15 seconds faster. – TheTXI Feb 25 at 21:46
I voted you up too. now you should be back to zero. – Chandan . Feb 25 at 21:51
show 2 more comments
vote up 9 vote down

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.

link|flag
vote up 2 vote down

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.

link|flag
vote up 4 vote down

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

link|flag
What about non decimal numbers? – Pablo Cabrera Feb 26 at 11:13
Integers are treated as well, integers – matt b Feb 26 at 14:10
vote up 1 vote down

Floating point rounding error. From http://docs.sun.com/source/806-3568/ncg_goldberg.html:

Squeezing infinitely many real numbers into a finite number of bits requires an approximate representation. Although there are infinitely many integers, in most programs the result of integer computations can be stored in 32 bits. In contrast, given any fixed number of bits, most calculations with real numbers will produce quantities that cannot be exactly represented using that many bits. Therefore the result of a floating-point calculation must often be rounded in order to fit back into its finite representation. This rounding error is the characteristic feature of floating-point computation.

link|flag
vote up 2 vote down

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.

link|flag
Nice concise answer! – Patrick McElhaney Feb 25 at 21:55
vote up 2 vote down

Try rounding it off using toFixed().

(0.1 + 0.2).toFixed(1) == 0.3
link|flag
vote up 0 vote down

Don't forget the comp.lang.javascript FAQ which covers this and many other questions.

link|flag
vote up 1 vote down

Yes, it's 'broken', and is proposed to be fixed in the next version with support for decimal numeric values.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.