Skip to content

Instantly share code, notes, and snippets.

@codewithcats
Created December 29, 2011 06:23
Show Gist options
  • Save codewithcats/1532358 to your computer and use it in GitHub Desktop.
Save codewithcats/1532358 to your computer and use it in GitHub Desktop.
var outerValue = 'ninja';
var later;
function outerFunction() {
var innerValue = 'samurai';
function innerFunction() {
assert(outerValue,"I can see the ninja.");
assert(innerValue,"I can see the samurai");
}
later = innerFunction;
}
outerFunction();
later();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment