If we do this:
var n0:Number = 0.0; var s0:String = n0.toFixed(0);
var n1:Number = 1.0; var s1:String = n1.toFixed(0);
var n2:Number = 2.0; var s2:String = n2.toFixed(0);The first string comes out as "0." (with decimal) and the other two come out as "0" (no decimal). Seems like a bug, no?

