Programmatically uncheck a check box

Hi. How can I programmatically uncheck a check box.?
I’ve searched and tried a lot of things like checkbox.elt.disabled = false;
But nothing works.
Thanks in advance.

https://p5js.org/reference/#/p5/createCheckbox

According to the source code above your checkbox variable needs to invoke method checked():
checkbox.checked(false);

Thank you very much. :smiley: