xxxxxxxxxx
19
let texts = [];
function setup() {
createCanvas(400, 400);
//creating text font
textFont('Times New Roman')
texts.push(new Text('K,30,90'));
texts.push(new Text('Q,20,90'));
texts.push(new Text('J,27,90'));
}
function draw() {
background(250);
for(let textObj of texts){
textObj.show();
}
}