xxxxxxxxxx
20
const NUM_SIDE = 8;
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
let sideLength = width/NUM_SIDE;
for (let i = 0; i < NUM_SIDE; i+=1) {
for (let j = 0; j < NUM_SIDE; j+=1) {
if ((i+j) % 2 === 0) {
fill(255);
} else {
fill(0);
}
rect(i*sideLength, j*sideLength, sideLength, sideLength);
}
}
}