var myvar = "my value"; (function() { console.log(myvar); // undefined var myvar = "local value"; })();. Indeed, the output is undefined.
確定! 回上一頁