EarthWeb
Developer.com
Site
windows 2000
visual c++
java
visual basic
javascripts
recommend it
 
Book
thinking in java
 
Interact
forum
guest book
jobs
jokes
what's new

share code
 
Resource
add resource
modify resource
new resource
 

[Internet Jobs]
-----
Java by E-mail:

Get the weekly e-mail highlights on Java!
-----

-

Use a multidimensional array


Author: Real Gagnon
Author's WebSite: http://tactika.com/realhome/realhome.html


 // create 5x5 two dimensional array
 var multidimension = new Array(5);
 for ( var i=0; i < multidimension.length; i++ )
   multidimension[i] = new Array(5);

 // access first element
 multidimension[0][0] = "hello world"



Posted On: 10-Jul-1999

internet.commerce