Skip to content

Instantly share code, notes, and snippets.

@othiym23
Last active December 10, 2015 15:59
Show Gist options
  • Select an option

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

Select an option

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