JSFiddle - React, Tailwind, and code Playground
HTML
<a id="alerter">Hi!</a>
CSS
a {
cursor:pointer;
color:blue;
}
JavaScript
document.getElementById('alerter').onclick=function(){
alert('a') ;
var foo = 'Some text';
alert(foo) ;
}