Creating an Array: Difference between revisions

Content added Content deleted
Line 12:
// creates an array with 3 numerical values
var arr2:Array = new Array(1,2,3);
//
// or just use the shorthand
var u:Array = [];
var v:Array = [1,2,3];
 
==[[Ada]]==