JSFiddle - React, Tailwind, and code Playground
by taiansu
JavaScript
(function () {
var dog = "German Shepherd";
alert(dog);
})();
alert(dog); //拋出not defined錯誤
by taiansu
(function () {
var dog = "German Shepherd";
alert(dog);
})();
alert(dog); //拋出not defined錯誤