A single parameter specifying the number of elements creates a new array with the specified number of elements. : Array Declaration « Array « Flash / Flex / ActionScript
A single parameter specifying the number of elements creates a new array with the specified number of elements.
package{
import flash.display.Sprite;
publicclass Main extends Sprite{
public function Main(){
// Create a new array with four elements.
var aEmployees:Array = new Array(4);
trace(aEmployees);
}
}
}