Skip to content

Instantly share code, notes, and snippets.

@GirlBossRush
Created February 3, 2014 02:44
Show Gist options
  • Save GirlBossRush/8778152 to your computer and use it in GitHub Desktop.
Save GirlBossRush/8778152 to your computer and use it in GitHub Desktop.
function foo() {
if (false) {
var x = 1;
}
return;
var y = 1;
}
function foo() {
var x, y;
if (false) {
x = 1;
}
return;
y = 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment