JSFiddle - React, Tailwind, and code Playground
by bilbobaggins
JavaScript
var a = 1;
two(a);
function two(a) {
console.log(a);
} // local scope again
three();
function three() {
var a = 3;
console.log(a);
}
by bilbobaggins
var a = 1;
two(a);
function two(a) {
console.log(a);
} // local scope again
three();
function three() {
var a = 3;
console.log(a);
}