Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
var arr = new Array(2);
arr[0] = new Array(2);
arr[1] = new Array(2);
var multi = [
[1,2,3],
[4,5,6,7],
[8,9,10]
];
alert(multi[0][2]); // '3'
alert(multi[1][3]); // '7'