Skip to content

Instantly share code, notes, and snippets.

@othiym23
Created January 4, 2013 22:52
Show Gist options
  • Select an option

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

Select an option

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