 |
How can I create a two dimensional array in JavaScript? - Stack ...
I have been reading online and some places say it isn't possible, some say it is ...
var items = [[1,2],[3,4],[5,6]]; alert(items[0][0]); // 1 ... You simply make each item ...
www.google.com.tw |
 |