Skip to content

Instantly share code, notes, and snippets.

@adammiller
Created October 15, 2012 18:40
Show Gist options
  • Save adammiller/3894268 to your computer and use it in GitHub Desktop.
Save adammiller/3894268 to your computer and use it in GitHub Desktop.
var a = 1,
b = 2,
c = function() {
var d = 3,
e = function() {
var f = 4;
};
console.log('a = ', a);
console.log('b = ', a);
console.log('d = ', a);
console.log('f = ', a);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment