PepperPepsi
Programmer
Hi, can anyone please tell me how to create an 2D array in JScript?
thanks
Chiu Chan
cchan@gefmus.com
thanks
Chiu Chan
cchan@gefmus.com
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.
myArray = new Array(2)
myArray[0] = new Array(2)
myArray[1] = new Array(2)
myArray[2] = new Array(2)
myArray[0][0] = "this"
myArray[0][1] = "that"