Created
May 7, 2011 06:44
-
-
Save nappa7878/960267 to your computer and use it in GitHub Desktop.
多次元配列の使い方(JavaScript)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var ary = new Array(10); | |
for(i=0;i<10;i++){ | |
ary[i] = new Array(10); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment