JSFiddle - React, Tailwind, and code Playground
HTML
<button id="b">test</button>
JavaScript
function cool(callInner){
console.log('cool');
function alsocool(){
console.log('Also cool');
}
if(callInner) {
alsocool();
}
}
$("#b").click(function() {
cool();
});