Skip to content

Instantly share code, notes, and snippets.

@DavidQL
Created July 27, 2011 03:27
Show Gist options
  • Save DavidQL/1108609 to your computer and use it in GitHub Desktop.
Save DavidQL/1108609 to your computer and use it in GitHub Desktop.
(function() {
if (true) {
var foo = 'apple';
}
// foo isn't local
// block scope !== functional scope
console.log(foo); // 'apple'
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment