Skip to content

Instantly share code, notes, and snippets.

@eqdw
Created January 17, 2011 16:11
Show Gist options
  • Save eqdw/783017 to your computer and use it in GitHub Desktop.
Save eqdw/783017 to your computer and use it in GitHub Desktop.
(function(){
var inner_private_var;
window.set_ipv = function(){
ipv = "herpaderp";
}
})();
set_ipv(); //sets ipv to "herpaderp" even though it is not in scope, correct? This is a closure right?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment