Skip to content

Instantly share code, notes, and snippets.

@zacker330
Created March 14, 2013 13:21
Show Gist options
  • Save zacker330/5161248 to your computer and use it in GitHub Desktop.
Save zacker330/5161248 to your computer and use it in GitHub Desktop.
javascript中神奇的作用域
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