xxxxxxxxxx
25
let h, m, s;
function setup() {
createCanvas(600, 400);
}
function draw() {
background(0,0,255);
fill(255,255,255);
h = hour();
m = minute();
s = second();
console.log("hour is: " + h); // prints out the value of hour()
console.log("minute is: " + m); // prints out the value of hour()
console.log("second is: " + s); // prints out the value of hour()
// customizing our text
textFont('Times New Roman');
textAlign(CENTER);
textStyle(BOLDITALIC);
textSize(80);
// displaying text
text(h + ":" + m + ":" + s, 300, 220);
}