Skip to content

Instantly share code, notes, and snippets.

@danielholmstrom
Created March 28, 2013 15:41
Show Gist options
  • Save danielholmstrom/5264188 to your computer and use it in GitHub Desktop.
Save danielholmstrom/5264188 to your computer and use it in GitHub Desktop.
if (true) {
function declaration() {
return "first";
}
} else {
function declaration() {
return "second";
}
}
declaration();
@danielholmstrom
Copy link
Author

if (true) {
declaration = function declaration() {
return "first";
}
} else {
declaration = function declaration() {
return "second";
}
}
declaration();

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment