xxxxxxxxxx
12
function setup() {
createCanvas(200, 200);
background(220);
// throw new Error('error');
}
function draw() {
// throw new Error('any throw during draw() crashes entire web editor page');
// referencing `mouse` also throws an error:
mouse;
}