JSFiddle - React, Tailwind, and code Playground

by Alex Tsouloftas

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();
});