Skip to content

Instantly share code, notes, and snippets.

@othiym23
Created January 4, 2013 23:01
Show Gist options
  • Select an option

  • Save othiym23/4458311 to your computer and use it in GitHub Desktop.

Select an option

Save othiym23/4458311 to your computer and use it in GitHub Desktop.
function lessConfusin(bool) {
var nested;
if (bool) {
nested = function () {
console.log("yes");
}
}
else {
nested = function () {
console.log("no")
}
}
nested();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment