916 Checkerboard V1 Codehs Fixed [updated] Site
. If you just print strings or append a row of ones, you'll likely see errors like: "You should set some elements of your board to 1" "You will need to use an assignment statement"
# Starting position (Bottom-left or Top-left depending on preference) # Here we start from top-left for standard drawing order start_x = -200 start_y = 200 916 checkerboard v1 codehs fixed
function start() var squareSize = 50; var numRows = 8; var numCols = 8; for (var row = 0; row < numRows; row++) for (var col = 0; col < numCols; col++) var x = col * squareSize; var y = row * squareSize; var numRows = 8
Repeat that row-making process from top to bottom. var numCols = 8