Hi,
Can anyone help me with dynamically adding to a multidimensional javascript array that has an arbitary number of dimensions?
Something like:
myArray [5] [4] = 'hello';
That code does not work unless the cells were populated when the array was defined+initialized. So you can't add new cells or dimensions like this. But how do you add them?
Thanks in advance.