Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. if (true) {
  2. var var_message = "if scope'un içerisindeyim";
  3. }
  4.  
  5. if (true) {
  6. let let_message = "bende if scope'un içerisindeyim";
  7. }
  8.  
  9. console.log(var_message); // 🎉 Bunu yapabilirsin -> if scope'un içerisindeyim
  10. console.log(let_message); // 💥 Bunu yapamazsın (ReferenceError)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement