Hi
I'm trying to set a 2d array and it's not working correctly.
my code is:
var ContentArray = new Array(9); //Define array
for(var i=0;i<=9;i++)
{
ContentArray[i] = new Array(9); // create 2d array
}
ContentArray[0,0]="1";
ContentArray[0,1]="2";
ContentArray[1,0]="3"...