A list of parameters, each of which is a new value to insert into a new element in the array
package{
import flash.display.Sprite;
public class Main extends Sprite{
public function Main(){
// Create a new array with zero elements.
var aEmployees:Array = new Array("A", "P", "C","H");
trace(aEmployees);
}
}
}
Related examples in the same category