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').change(function(){
          if(this.checked){
              $("input#don").prop('checked',true);
              $('p').html('Checkbox is checked: <b>True</b>');
          }else{
              $("input#don1").prop('checked',true);
              $('p').html('Checkbox is checked: <b>False</b>');
          }
      });
    });