public static MIN_VALUE : Number
The smallest representable number (double-precision IEEE-754). This number is approximately 5e-324.
The following ActionScript displays the largest and smallest representable numbers to the Output panel to the log file.
trace("Number.MIN_VALUE = "+Number.MIN_VALUE);
trace("Number.MAX_VALUE = "+Number.MAX_VALUE);
This code displays the following values:
Number.MIN_VALUE = 4.94065645841247e-324 Number.MAX_VALUE = 1.79769313486232e+308