topical media & game development

talk show tell print

basic-javascript-02-ch2-examp9.htm / htm



  <html>
  <body>
  
  <script language="JavaScript" type="text/javascript">
  
  var personnel = new Array();
  
  personnel[0] = new Array();
  personnel[0][0] = "Name0";
  personnel[0][1] = "Age0";
  personnel[0][2] = "Address0";
  
  personnel[1] = new Array();
  personnel[1][0] = "Name1";
  personnel[1][1] = "Age1";
  personnel[1][2] = "Address1";
  
  personnel[2] = new Array();
  personnel[2][0] = "Name2";
  personnel[2][1] = "Age2";
  personnel[2][2] = "Address2";
  
  document.write("Name : " + personnel[1][0] + "<BR>");
  document.write("Age : " + personnel[1][1] + "<BR>");
  document.write("Address : " + personnel[1][2]);
  
  </script>
  
  </body>
  </html>
  


(C) Æliens 20/2/2008

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.