Skip to content

Instantly share code, notes, and snippets.

@sherah
Created December 11, 2012 18:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sherah/4260851 to your computer and use it in GitHub Desktop.
Save sherah/4260851 to your computer and use it in GitHub Desktop.
Closure Scope Illustration
var makeHelpersWithClosureAccess = function() {
var number = Math.random() * 100;
window.shoutNumber = function() {
alert(number);
};
window.changeNumber = function(input){
number = input;
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment