0.1 + 0.2 == 0.3
// returns false
0.1 + 0.2
// returns 0.30000000000000004
Any ideas why this happens?
Any ideas why this happens?
| |||||||||||||||||||||
feedback
|
|
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 the Epsilon value, which is a very very small number.
For the exact reason why, please read this paper. | |||||||||||||||
feedback
|
|
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. | |||||
feedback
|
|
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. | |||||
|
feedback
|
|
Try rounding it off using toFixed().
| |||||||||||
feedback
|
|
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 | |||||||||||
feedback
|
|
Yes, it's 'broken', and is proposed to be fixed in the next version with support for decimal numeric values. | |||
|
feedback
|
|
Floating point numbers. | |||||
feedback
|
|
In addition to the other correct answers, you may want to consider scaling your values to avoid problems with floating-point arithmetic. For example:
... instead of:
The expression As a practical example, to avoid floating-point problems where accuracy is paramount, it is recommended1 to handle money as an integer representing the number of cents: 1 Douglas Crockford: JavaScript: The Good Parts: Appendix A - Awful Parts (page 105). | |||||||
feedback
|
|
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. | |||
|
feedback
|
|
Floating point rounding error. From http://docs.sun.com/source/806-3568/ncg_goldberg.html:
| |||
|
feedback
|
|
A solution to tidy up the unsightly overflow
Using 'toPrecision(12)' leaves trailing zeros which 'parseFloat()' removes. Assume it is accurate to plus/minus one on the least significant digit. | |||
|
feedback
|
|
They are floats. | |||||||||||||
feedback
|
|
Don't forget the comp.lang.javascript FAQ which covers this and many other questions. | |||
|
feedback
|
| |||
|
feedback
|
|
I asked this question myself with different wording bc I didn't know to look for "floating-point". I would suggest tagging it with "decimals" and "fractions" "addition subtraction". If I search for "javascript adding decimals inaccurate", the search mechanism isn't smart enough to equate "decimals" with "floating-point" and "adding" with "math". | |||
feedback
|
|
My workaround:
precision refers to the number of digits you want to preserve after the decimal point during addition. | |||
|
feedback
|