xxxxxxxxxx
18
let things = [1, 4, 7, 4, 'cat', true, false, '🚁'];
function setup() {
createCanvas(400, 400);
for(let thing of things){
console.log(thing);
}
for(let i = 0; i < length; i++){
console.log(things[i]);
}
}
function draw() {
background(220);
}