We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 741b11e commit 58384ccCopy full SHA for 58384cc
code/solutions/18_3_conways_game_of_life.html
@@ -26,7 +26,7 @@
26
return checkboxes.map(box => box.checked);
27
}
28
function checkboxesFromGrid(grid) {
29
- return grid.forEach((value, i) => checkboxes[i].checked = value);
+ grid.forEach((value, i) => checkboxes[i].checked = value);
30
31
function randomGrid() {
32
let result = [];
0 commit comments