JSFiddle - React, Tailwind, and code Playground
by calpo
JavaScript
var foo = 'bar';
(function(){
if(false){
var foo = 'BAZ';
}
alert(foo); // bar でも BAZ でもなく undefined
})();
by calpo
var foo = 'bar';
(function(){
if(false){
var foo = 'BAZ';
}
alert(foo); // bar でも BAZ でもなく undefined
})();