A
Archos
To create a two dimensional array I use:
var a4 = new Array(3); for (i=0; i<3; i++) a4=new Array(5);
In pseudoce: a4 = [3][5]
Then, to create a 3 dim. array, I tried this one:
var a5 = new Array(2); for (i=0; i<2; i++) a5=new Array(2); for
(i=0; i<2; i++) a5=new Array(2);
a5 = [2][2][2]
but the firebug console shows that it has not been defined the las
dimension
var a4 = new Array(3); for (i=0; i<3; i++) a4=new Array(5);
In pseudoce: a4 = [3][5]
Then, to create a 3 dim. array, I tried this one:
var a5 = new Array(2); for (i=0; i<2; i++) a5=new Array(2); for
(i=0; i<2; i++) a5=new Array(2);
a5 = [2][2][2]
but the firebug console shows that it has not been defined the las
dimension
undefinedconsole.log(a5[1][0])