Imagine the following situation:
var array = new Array ( [0,0,0,0], [0,0,1,0], [0,0,0,0] );
var x = 0; var y = 0;
if(array[y][x]) {
// x and y can be any integer
// code should execute only for array[1][2]
}
When x and y refer to an item in the array that exists, everything is fine. Otherwise, the script terminates. Obviously this is not the behaviour I want - is it possible to reference Javascript multidimensional arrays safely?
Thanks :)
array[1][2]? – user113716 Feb 8 '11 at 15:52