Duplicate:
I have some jQuery code that simply subtracts a number from another, but the result is slightly off (315.96000000000003 is the value of the test variable after executing the subraction, not 315.96). Anyone know what's causing this?
var test = 1315.96;
test -= 1000.00;
