Home Java Javascript-array JavaScript array multidimensional



JavaScript array multidimensional
Posted on: November 10, 2008 at 12:00 AM
In this Tutorial we want to describe you a code that help you in understanding JavaScript array multidimensional.

JavaScript array multidimensional

     

In this Tutorial we want to describe you a code that help you in understanding JavaScript array multidimensional. For this we are using JavaScript language, This code illustrate a multidimensional array application used in creating a table. The document. write create a table with 4 columns and 4 rows with a different field name of the  column. 

In this code we consider a function multidimensional array that accept table as argument .Inside this function we print a table showing you 'Example to show Multidimensional Array' and print the name of respective columns. The for loop execute the script till the variable x is less than equal to 3.The document. write print the number of columns. In the same way the for loop execute the script and print the number of  rows till variable y is less than equal to 2.The var array instantiate an array object and store the value passed as parameter to it. The var new array instantiate the array object by accepting the arrays object as parameter. Finally a new multidimensional table is created and show the list of different value in the respective column.

JavascriptMultidimensionalArray.html

<html>
  <head>
  <title>JavaScript Multidimensional Array</title>
  <script language="JavaScript" type="text/javascript">

  function multidimensionalArray(table) {
  document.write("<b>Example to show 
  MultiDimensional Array</b>"
+"<br>");
  document.write("<table border=1>")
  document.write("<th>S.no</th><th>Name</th><th>Ph.No</th>\n\
 <th>Company</th>");
  for(var x=1; x<=3; x++) {
  document.write("<tr><td>",x,"</td>");
  for(var y=0; y<=2; y++){
  document.write("<td>",table[x][y],"</td>");
  }
  document.write("</tr>");
  }
  document.write("</table>");
  }
  var array1 = new Array("Girish","971999","Roseindia.net");
  var  array2 = new Array("Mahendra","971988","Roseindia.net");
  var  array3 = new Array("Komal","971977","Roseindia.net");
  var newarray = new Array("",array1,array2,array3);

  multidimensionalArray(newarray);
  </script>
  </head>
  <body>
 </body>
</html>

Output of the program

Download Source code

Related Tags for JavaScript array multidimensional:
javajavascriptcarraytableantapplicationscriptdifflanguageiohelpsedcolumniptutorialfieldnamecolumnsusingriathisidwriteappcreatetabrowifmultidimensionalforrowsiewithtoldlanwseilitdocdesmultiliuseulimindifferentasstamnttrwancajesagemeppratecatdocreatingdescribetorumnscolatishaimellraydimensioneaandarcodcodestrunderstandingwantvatutorscrssririprenthavstabablatiaphatdimensionalfelumicaicaplndodeonolo


More Tutorials from this section

Ask Questions?    Discuss: JavaScript array multidimensional   View All Comments

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.