JSFiddle - React, Tailwind, and code Playground
by demee
JavaScript
function a() {
var x = 1;
function b() {
var y = 2;
console.log(y);
}
b();
}
a();
by demee
function a() {
var x = 1;
function b() {
var y = 2;
console.log(y);
}
b();
}
a();