xxxxxxxxxx
34
let happy = true // = is assignment, == is equivalence, === is stricter
let friday = false
// you can also do > or <
daysOfWeek = randomDayOfWeek();
function setup() {
createCanvas(400, 400);
if (happy) {
print ("I'm happy")
}
if (happy && friday) {
print ("It's Friday and I'm happy")
}
//random day of week generator
function randomDayOfWeek () {
let daysOfWeek = ['Monday', 'Tuesday']; // i believe this is called an Array
print (daysOfWeek)
return random(daysOfWeek); // generates an element from the array above
print ("Today is" + daysOfWeek)
}
}
function draw() {
background(220);
}