I want to creat new list of an arrays whoes name are defined from an arry it self. Thus generating arrays dynamically from an array.
Ex:
Thus want to access the array DefaultArray1_2 publically or globly. ie. by the name of new generated array not from the node ie. not from myarray[1].
Can anybody help me out.
Ex:
Code:
var myarray=new Array("DefaultArray1_1","DefaultArray1_2","DefaultArray2_1","DefaultArray2_2");
for (i=0; i < myarray.length; i++)
{
myarray[i] = new Array();
myarray[i]= ["1","2","3","4"];
}
Can anybody help me out.
Comment