JSFiddle - React, Tailwind, and code Playground
JavaScript
var c; //hoisted var declaration
function b() { //hoisted function declaration
function a() {alert('in');} //hoisted function declaration
c = 10;
return;
}
c=1;
alert(c);
b();
alert(c);