JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<input type="checkbox" id="abc" value="UDB">UDB
<input type="checkbox" id="abc" value="Prasad">Prasad
JavaScript
$('input#abc').click(function(){
alert($(this).is(':checked'));
var res=$(this).is(':checked');
alert(res);
});