Skip to content

Instantly share code, notes, and snippets.

@abhinavlal
Created October 24, 2013 12:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abhinavlal/7136579 to your computer and use it in GitHub Desktop.
Save abhinavlal/7136579 to your computer and use it in GitHub Desktop.
var a = 2;
function() {
alert(a);
var a = 3;
alert(a);
}
// output for first alert
// output for second alert
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment