JSFiddle - React, Tailwind, and code Playground

by cathead

HTML

<label for="foo">Hello</label>
<input class="foo" id="foo" type="checkbox">

JavaScript

document.querySelector(".foo").checked = true;

/* thing.addEventListener("change", alert('bell')) */
/* 
thing.addEventListener("change", () => {
  alert('taco')
}); */