Decimal Numbers : Number « Data Type « Flash / Flex / ActionScript






Decimal Numbers

 

package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){
        var nDecimalOne:Number = 1.23e+2;  // results in 123
        var nDecimalTwo:Number = 1.23e-2;  // results in 0.0123
        
        trace(nDecimalOne);
        trace(nDecimalTwo);
    }
  }
}

        








Related examples in the same category

1.Use Number type variable in for loop
2.Read and write to a variable
3.Casting to a Number: Number(stringValue)
4.Dealing with Infinite Values: Number.POSITIVE_INFINITY and Number.NEGATIVE_INFINITY
5.Handling Minimum and Maximum Values: MAX_VALUE and MIN_VALUE
6.Minimum and Maximum Values for uint and int
7.Working with Number Instances
8.The default value for an unassigned variable of type Number is NaN
9.Not a Number: use the top-level function isNaN()