xxxxxxxxxx
22
const Months = ["January","February","March","April","May","June","July","August","September","October","November","December"];
const Days=["Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"];
function setup() {
createCanvas(400, 400);
textSize(34);
noLoop();
}
function draw() {
background(220);
Months.forEach(function(month,index){
console.log(month);
})
Days.forEach(function(day,index){
console.log(day+' '+index);
})
}