xxxxxxxxxx
21
let randomColor;
let w,h;
let col=20;
let row=20;
function setup() {
createCanvas(400, 400);
x=width/col;
}
function draw() {
background(220);
for(let i=0; i<col; i++){
randomColor = color(random(255),random(255),random(255));
fill(randomColor);
rect(i*x,0,x,height)
noLoop();
}
}