I have a problem with the following statement

trace(10.12+13.75) //output 23.869999999999997

Can anybody explain me why is this so and how to get exact 23.87 out of this?

Thanks

link|improve this question

62% accept rate
1  
Check this out stackoverflow.com/questions/2214003/… – DennisJaamann Jan 26 at 9:06
Thank You!, I was doing similar one from Allan – sameer jain Jan 26 at 11:55
feedback

2 Answers

up vote 1 down vote accepted

That happens because of the precision of IEEE format.

Simplest would be to use toFixed.

var num:Number = 10.12+13.75;
var numStr:String = num.toFixed(2);
var num2:Number = new Number(numStr);
link|improve this answer
Pranav, num2 should be of type Number. – AsTheWormTurns Jan 26 at 9:59
num = Math.round(num*100)/100; will this be OK? – sameer jain Jan 26 at 11:36
@AsTheWormTurns doh! – Pranav Hosangadi Jan 26 at 12:53
@sameerjain, sure. It, however, being a numeric operation, adds the same inconsistencies you encountered in the first place – Pranav Hosangadi Jan 26 at 12:54
feedback

Computer floating point numbers are not perfectly accurate. JavaScript (and I assume ActionScript, as it's a variant) uses 64-bit IEEE 754 values (ECMAScript spec ref). The best example of this imprecision is probably 0.1 + 0.2, which comes out to 0.30000000000000004. To get 23.87, you'll have to round.

If you're doing financial math, you may (or may not) be better off using a library that does decimal math rather than IEEE floating point (something akin to Java's BigDecimal class or C#'s decimal type). But note that decimal types have their own limitations, such as not being able to represent 1 / 3 accurately.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.