Created
March 14, 2013 13:21
-
-
Save zacker330/5161248 to your computer and use it in GitHub Desktop.
javascript中神奇的作用域
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var scope = "s1"; | |
var f = function(){ | |
console.log(scope); // will print undefined | |
var scope = "f1"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment