Skip to content

Instantly share code, notes, and snippets.

@yamankatby
Last active October 1, 2019 07:54
Show Gist options
  • Save yamankatby/b312e32c2d42e343c671ce2b828f5d16 to your computer and use it in GitHub Desktop.
Save yamankatby/b312e32c2d42e343c671ce2b828f5d16 to your computer and use it in GitHub Desktop.
if (true) {
var var_message = "if scope'un içerisindeyim";
}
if (true) {
let let_message = "bende if scope'un içerisindeyim";
}
console.log(var_message); // 🎉 Bunu yapabilirsin -> if scope'un içerisindeyim
console.log(let_message); // 💥 Bunu yapamazsın (ReferenceError)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment