Skip to content

Instantly share code, notes, and snippets.

@valerymelou
Created May 20, 2018 01:10
Show Gist options
  • Save valerymelou/d4b37eb2c805e144e5efcd4af95ca9c5 to your computer and use it in GitHub Desktop.
Save valerymelou/d4b37eb2c805e144e5efcd4af95ca9c5 to your computer and use it in GitHub Desktop.
function smile(isHappy) {
var smiling;
var sad;
if (isHappy) {
smiling = 'I am happy!';
} else {
sad = 'I am sad!';
console.log(smiling);
}
}
smile(false); // undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment