✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
A student writes the following code. What will be displayed on the canvas?function setup() { createCanvas(300, 300); background(220);}
function draw() { subtract(30, 12);}
function subtract(a, b) { text(a - b, 150, 150);}