Guest User

Untitled

a guest
Aug 15th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. console.log("My favorite dinasaur is " + theropod);
  2. // ReferenceError: theropod is not defined
  3.  
  4. var sauropod = "apatosaurus";
  5. sauropod();
  6. // TypeError: sauropod is not a function
  7.  
  8. if (sauropod === "apatosaurus")
  9. console.log("We have the same favorite sauropod!");
  10. }
  11. // SyntaxError: Unexpected token }
Add Comment
Please, Sign In to add comment