JSFiddle - React, Tailwind, and code Playground

by shahrukh007

HTML

<html>
<head>
<body>
<input type="radio" class="check" value="khan" onchange="myFunction(event);">car<br>
<script>
function myFunction(event){
console.log(event.target.checked);
}
</script>
</body>
</head>
</html>