JSFiddle - React, Tailwind, and code Playground
by Gaurav Gandhi
HTML
<input type="checkbox" id="chkDefaultTrue1"/>
<input type="checkbox" id="chkDefaultFalse1"/>
<input type="checkbox" id="chkDefaultTrue2"/>
<input type="checkbox" id="chkDefaultFalse2"/>
JavaScript
$('#chkDefaultTrue1').prop('checked', JSON.parse("true"));
$('#chkDefaultFalse1').prop('checked', JSON.parse("false"));
const Comment_isDefault_t = 'true';
const Comment_isDefault_f = 'false';
$('#chkDefaultTrue2').prop('checked', Comment_isDefault_t == "true");
$('#chkDefaultFalse2').prop('checked', Comment_isDefault_f == "true");