!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>二维数组</title>
<script type="text/javascript">
var myarray=new Array(3);
for( var i=o;i<3;i++){
myarray[i]=new Array(6);
for(var j=0;j<6; j++){
myarray[i][j]=i*j;
}
}
document.write(myarray[2][3]);
</script>
</head>
<body>
</html>
找个ide会自动提示错误的
第一行少一个<,第8行i=0,你写的是字母o