Skip to content

Instantly share code, notes, and snippets.

@DavidQL
Created August 5, 2011 15:38
Show Gist options
  • Save DavidQL/1127795 to your computer and use it in GitHub Desktop.
Save DavidQL/1127795 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