JSFiddle - React, Tailwind, and code Playground
by wirey00
HTML
<input type='checkbox' name='test1'>
<input type='checkbox' name='test2'>
<input type='checkbox' name='test3'>
<input type='checkbox' name='test4'>
<input type='checkbox' name='test5'>
<button>click</button>
JavaScript
$('button').click(function(){
$('input[type=checkbox]').attr('checked',false);
});