Skip to content

Instantly share code, notes, and snippets.

@adamduren
Forked from zacharytamas/gist:8247446
Last active January 2, 2016 03:59
Show Gist options
  • Save adamduren/8247580 to your computer and use it in GitHub Desktop.
Save adamduren/8247580 to your computer and use it in GitHub Desktop.
(function () {
var ret;
for (var i = 0; i < 10; i++) {
if (i == 5) {
ret = (function(i) {
return function () {
return i;
}
})(i)
}
}
return ret;
})()();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment