Forum Moderators: open
timer = [[],[],[]]
If you really aren't sure, you will have to include statements that test to see if the sub-array exists before trying to access a member. If it doesn't, then you can create the array first.
var someArray = new Array();
someArray[0] = new Array();
and if you ned to be dinamic put it in loop:
for(i=0;i<somthing;i++){
someArray[i] = new Array();
}
I hope this is what you need.