My problem is quite simple to describe, in flex:
0.8 - 0.2 = 0.6000000000000001
Anyone got this before, I'm sure the first two members are 0.8 and 0.2 and are Number class, why would this happen??
And another thing, I cast the value from *
type like this:
var value:*=0.8;
var castValue:Number = Number(value);
But nothing more, if I trace value
I get 0.8 not 0.800000000000001 or something.