Skip to content

Instantly share code, notes, and snippets.

@web-zen
Created August 20, 2009 23:01
Show Gist options
  • Save web-zen/171492 to your computer and use it in GitHub Desktop.
Save web-zen/171492 to your computer and use it in GitHub Desktop.
var a = 123;
function f() {
alert(a);
var a = 1;
alert(a);
}
f();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment