JSFiddle - React, Tailwind, and code Playground

HTML

<div>
click
</div>

JavaScript

var xx = 50;

$('div').click(function(){
var xx = xx + 10;
alert(xx)
});