Skip to content

Instantly share code, notes, and snippets.

@fabiokung
Created July 26, 2010 03:08
Show Gist options
  • Save fabiokung/490133 to your computer and use it in GitHub Desktop.
Save fabiokung/490133 to your computer and use it in GitHub Desktop.
function t3hClosure() {
var globalVariablesSux = "non global";
return function() {
alert(globalVariablesSux);
}
}
closure = t3hClosure();
alert(globalVariablesSux);
closure();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment