The Array class lets you access and manipulate arrays. Array indices are zero-based, which means that the first element in the array is [0], the second element is [1], and so on.
Different Way of Declaring and storing ArraysFirst Methodvar Ar:Array=new Array() Second Methodvar Ar:Array=new Array(“Orange”,”Apple”) Third Methodvar Ar:Array=new Array() Fourth Methodvar Ar:Array=new Array() Fifth Methodvar Ar=[] |