JSFiddle - React, Tailwind, and code Playground

by rsmclaug

HTML

<input type="checkbox" id="string">String
<br>
<input type="checkbox" id="bool">Boolean

JavaScript

document.getElementById('string').checked = 'true';
document.getElementById('bool').checked = true;