xxxxxxxxxx
16
let input
function setup() {
createCanvas(400, 400);
input = createInput('hello').input(process); //input add event listener
}
function draw() {
background(220);
}
//define callback function
function process(e){
console.log(e.data) //printing data of the last input
console.log(input.value()) //print full value
}