I have been reading online and some places say it isn\'t possible, some say it is and then give an example and others refute the example, etc.
How do I dec
Two dimensional arrays are created the same way single dimensional arrays are. And you access them like array[0][1].
array[0][1]
var arr = [1, 2, [3, 4], 5]; alert (arr[2][1]); //alerts "4"