Defines a JavaScript two-dimensional array that uses an array of defined arrays to implement the basics

Source: Internet
Author: User
1. JavaScript does not provide a way to directly define a two-dimensional array, but you can define a JavaScript two-dimensional array by using an array of defined arrays: for example, defining a 4x3 two-dimensional array A can take the following approach:
var a=new Array ();
A[0]=new Array ();
A[1]=new Array ();
A[2]=new Array ();
A[3]=new Array ();
Here is a case

Copy Code code as follows:

<! DOCTYPE html>
<meta http-equiv= "Con Tent-type "content=" text/html; Charset=utf-8 "/>
<title></title>
<body>
<script type=" text/ JavaScript >
Function func () {
var mXn = new Array (8);
for (var i = 0; i < 8; i++) {
Mxn[i] = new Array ();
for (Var j=0;j<8;j++)
{
mxn[i][j]= "" +i+ "Row" +j+ "column";
}

document.write ("<table border=\" 1\ "width=\" 700\ ">");
for (var i = 0; i < 8; i++) {
document.write ("<tr>");
for (var j = 0; J < 8; J + +) {
document.write ("<td>");
document.write (Mxn[i][j]);
document.write ("</td>");
}
document.write ("</tr>");
}
}
func ();
</script>
</body>
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.