JavaScript rounding issue - Stack Overflow [closed] most recent 30 from stackoverflow.com 2009-12-21T11:05:03Z http://stackoverflow.com/feeds/question/748395 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/748395/javascript-rounding-issue 0 JavaScript rounding issue [closed] Russ Clark 2009-04-14T16:34:23Z 2009-04-14T16:42:19Z <h3>Duplicate:</h3> <blockquote> <p><a href="http://stackoverflow.com/questions/588004/is-javascripts-math-broken">Is JavaScript’s math broken?</a></p> </blockquote> <p><hr /></p> <p>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?</p> <pre><code> var test = 1315.96; test -= 1000.00; </code></pre>