- var first = 'hi there';
- var first = (function() {
- console.log("first", first); // undefined
- var first = "hello world";
- })();
- //相当于
- var first = 'hi there';
- var first = (function() {
- var first;//the variable declaration moved to the top
- console.log("first", first); // undefined
- var first = "hello world";
- })();
- // second test case
- var second = 'hi there';
- var second = (function() {
- console.log("second", second ); // "hi there"
- // here, we DO NOT declare a local "second" variable
- })();
- // in the second test case, we don't declare the local variable, so the console.log call refers to the global variable and the value is not "undefined"
- //link:http://jsfiddle.net/pomeh/ynqBs/
2012年3月11日星期日
javascript函数中变量的范围
订阅:
博文评论 (Atom)
没有评论:
发表评论