JavaScript rounding issue - Stack Overflow [closed]most recent 30 from stackoverflow.com2009-12-21T11:05:03Zhttp://stackoverflow.com/feeds/question/748395http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/748395/javascript-rounding-issue0JavaScript rounding issue [closed]Russ Clark2009-04-14T16:34:23Z2009-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>