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 cell = new Array(3); | |
for (i = 0; i < 3; i++) { | |
cell[i] = new Array(3); | |
} | |
var newCell = new Array(3); | |
for (i = 0; i < 3; i++) { | |
newCell[i] = new Array(3); | |
} | |
var i = 0, j = 0; |