Skip to content

Instantly share code, notes, and snippets.

@v2m
Last active August 29, 2015 14:05
Show Gist options
  • Save v2m/174ead2e49c87e104f2d to your computer and use it in GitHub Desktop.
Save v2m/174ead2e49c87e104f2d to your computer and use it in GitHub Desktop.
function foo(v) {
var x;
var y;
function bar() {
return x + y;
}
if (v) {
x = 5;
return bar();
}
else {
y = 5;
return bar();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment