Skip to content

Instantly share code, notes, and snippets.

@benjaminEwhite
Created February 5, 2014 23:44
Show Gist options
  • Save benjaminEwhite/8835705 to your computer and use it in GitHub Desktop.
Save benjaminEwhite/8835705 to your computer and use it in GitHub Desktop.
function makeFunc(a) {
var name = a;
function displayName() {
alert(a);
}
return displayName;
}
var a = 'something';
var myFunc = makeFunc(a);
myFunc();
var a = 'else';
myFunc();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment