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
// DOM Elements | |
const allCells = document.querySelectorAll('.cell:not(.row-top)'); | |
const topCells = document.querySelectorAll('.cell.row-top'); | |
const resetButton = document.querySelector('.reset'); | |
const statusSpan = document.querySelector('.status'); | |
// columns | |
const column0 = [allCells[35], allCells[28], allCells[21], allCells[14], allCells[7], allCells[0], topCells[0]]; | |
const column1 = [allCells[36], allCells[29], allCells[22], allCells[15], allCells[8], allCells[1], topCells[1]]; | |
const column2 = [allCells[37], allCells[30], allCells[23], allCells[16], allCells[9], allCells[2], topCells[2]]; |
OlderNewer