Skip to content

Commit 58384cc

Browse files
deisnermarijnh
authored andcommitted
Update 18_3_conways_game_of_life.html
Remove superfluous `return`.
1 parent 741b11e commit 58384cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

code/solutions/18_3_conways_game_of_life.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
return checkboxes.map(box => box.checked);
2727
}
2828
function checkboxesFromGrid(grid) {
29-
return grid.forEach((value, i) => checkboxes[i].checked = value);
29+
grid.forEach((value, i) => checkboxes[i].checked = value);
3030
}
3131
function randomGrid() {
3232
let result = [];

0 commit comments

Comments
 (0)