getting the max from Array

there’s a big deference between


var _arr:Array = new Array();
_arr.push(["somthing1", "something2"]);

and


var _arr:Array = new Array();
_arr.push("somthing1", "something2");

the first array is 2 dimentional array, and the second one is a 1 dimention array.

Leave a Reply