Skip to content

Instantly share code, notes, and snippets.

@vadimii
Last active December 17, 2015 06:19
Show Gist options
  • Save vadimii/5564861 to your computer and use it in GitHub Desktop.
Save vadimii/5564861 to your computer and use it in GitHub Desktop.
JavaScript variable declaration test
window.test = 'global test';
(function () {
console.log(typeof test); // "undefined"
var test = 'context test';
console.log(test); // "context test"
})();
console.log(test); // "global test"
window.test = 'global test';
(function () {
var test; // moved by interpreter
console.log(typeof test); // "undefined"
test = 'context test';
console.log(test); // "context test"
})();
console.log(test); // "global test"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment