JSFiddle - React, Tailwind, and code Playground
HTML
<head>
<script type="text/javascript">
var globalch = 1;
function chk()
{
var chicken = true;
if(chicken){
globalch = 3;
}else{
globalch = 3;
}
}
</script>
</head>
<body>
<a href="#" onclick="alert(globalch)">What is the variable?</a><br />
<a href="#" onclick="chk()">Change the variable to 3</a>
</body>