Why does 49.90 % 0.10 in JavaScript return 0.09999999999999581? I expected it to be 0.
|
|
|||||||
|
|
Because JavaScript uses floating point math which always leads to rounding errors. If you need an exact result with two decimal places, multiply your numbers with
Round if necessary. |
|||
|
|
Javascript's Number is using "IEEE double-precision" to store the values. They are incapable of storing all decimal numbers exactly. The result is not zero because of round-off error when converting the decimal number to binary.
Thus floor(49.90 / 0.10) is only 498, and the remainder will be 0.09999.... It seems that you are using numbers to store amount of dollars. Don't do this, as floating point operations propagate and amplify the round-off error. Store the number as amount of cents instead. Integer can be represented exactly, and |
||||
|
|
|
http://en.wikipedia.org/wiki/Modulo_operation Don't be angry modulo is used with integers ^^ So floating values occure some errors. |
|||
|
|
|
take a look at floating points and its disadvantages - a number like 0.1 can't be saved correctly as floating point, so there will alwas be such problems. take your numbers *10 or *100 and do the calculations with integers instead. |
|||
|
|