Skip to content

Instantly share code, notes, and snippets.

@zacharytamas
Created January 3, 2014 21:59
Show Gist options
  • Save zacharytamas/8247446 to your computer and use it in GitHub Desktop.
Save zacharytamas/8247446 to your computer and use it in GitHub Desktop.
Closures.
(function () {
var ret;
for (var i = 0; i < 10; i++) {
if (i == 5) {
ret = function () {
return i;
}
}
}
return ret;
})()();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment