vote up 0 vote down star

Duplicate:

Is JavaScript’s math broken?


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;
flag

It's a JavaScript issue, nothing to do with jQuery. I linked to the first of many questions addressing this - just search for these two terms on StackOverflow: javascript rounding – Mihai Limbasan Apr 14 at 16:40
alert(test.toFixed(2)) is the answer you want – Chris S Apr 14 at 16:46

closed as exact duplicate by Mihai Limbasan, greyfade, Shog9, Jason S, Welbog Apr 14 at 16:41