Skip to content

Instantly share code, notes, and snippets.

@b-tekinli
Created May 26, 2024 14:58
Show Gist options
  • Save b-tekinli/2423ac6a62215541613cdd2f0b503ca1 to your computer and use it in GitHub Desktop.
Save b-tekinli/2423ac6a62215541613cdd2f0b503ca1 to your computer and use it in GitHub Desktop.
js interview variable def
// ES5
var x = 10;
if (true) {
var x = 20;
}
console.log(x); // 20
// ES6
let y = 10;
if (true) {
let y = 20;
}
console.log(y); // 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment