Skip to content

Instantly share code, notes, and snippets.

@johnbahamon
Created December 6, 2016 13:49
Show Gist options
  • Save johnbahamon/a1ce2e2da945ee5669b0ac6f7d66a403 to your computer and use it in GitHub Desktop.
Save johnbahamon/a1ce2e2da945ee5669b0ac6f7d66a403 to your computer and use it in GitHub Desktop.
function f(shouldInitialize: boolean) {
if (shouldInitialize) {
var x = 10;
}
return x;
}
f(true); // returns '10'
f(false); // returns 'undefined'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment