JSFiddle - React, Tailwind, and code Playground
by lbstr
JavaScript
function main(){
function callMom(){
alert('hi mom!');
}
}
function goAboutYourDay(){
brushTeeth(); // works
callMom(); // wont work
}
function brushTeeth(){
alert('brush brush brush');
}
goAboutYourDay();