Hi guys,
I have created a 2 dimensional array call table and want to assign each and every elements in that array to 0. The codes below shows how I have done it:
var table = new Array();
table = [ [0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0],
[0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0],
[0,0,0,0,0,0,0,0,0,0,0,0,0] ];
Just like to find out if there is a simpler way to do it. I’ve tried doing it with a ‘for’ loop but I always get ‘undefined’ values.
So, anyone has got any idea on how to do it?