Guest User

Untitled

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