When I read other's source code(write for Flash) I find something like this:
var _array:Array<Int> = untyped __new__(Array, 10);
And I find it create an Array and the Array's length is 10. However I try something like:
var _array:Array<Int> = untyped __new__(Array, 1, 2);
It create an Array which has two elements. I was confused. What's the real meaning of the keyword Array?