Guest User

Untitled

a guest
May 24th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. function smile(isHappy) {
  2. var smiling;
  3. var sad;
  4. if (isHappy) {
  5. smiling = 'I am happy!';
  6. } else {
  7. sad = 'I am sad!';
  8. console.log(smiling);
  9. }
  10. }
  11.  
  12. smile(false); // undefined
Add Comment
Please, Sign In to add comment