Skip to content

Instantly share code, notes, and snippets.

@0x4a
Created June 1, 2014 04:23
Show Gist options
  • Save 0x4a/244105bc62de7de9e1e7 to your computer and use it in GitHub Desktop.
Save 0x4a/244105bc62de7de9e1e7 to your computer and use it in GitHub Desktop.
scoping function for pseudo-global variables - #js
(function() {
var a = 0; // `a` is NOT a property of `window` now
function foo() {
alert(a); // Alerts "0", because `foo` can access `a`
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment