JSFiddle - React, Tailwind, and code Playground

HTML

<input type="radio" id="don" name="billing[use_for_shipping]" value="">Ship to this address</input>
<input type="radio" id="don1" name="billing[use_for_shipping]" value="">Ship to different address</input>
<br/><br/>
<b> <input type="checkbox" id="chkSelect" /> Check/Uncheck me </b>
<br/><br/>
<p></p>

JavaScript

$(document).ready(function () {
    $('#chkSelect').click(function () {
        if (this.checked) {
            $("input#don").click();
            $('p').html('Checkbox is checked: <b>True</b>');
        } else {
            $("input#don1").click();
            $('p').html('Checkbox is checked: <b>False</b>');
        }
    });
});