JSFiddle - React, Tailwind, and code Playground

HTML

<input type="radio" checked="checked" />
<button>Uncheck</button>

JavaScript

$('button').click(function() {
    $('input').prop('checked', false);
});