SyntaxFix
Write A Post
Hire A Developer
Questions
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"