Hoisting and Temporal Dead Zone
Can you predict the output for the below snippets of code?
console.log(item1)
console.log(item2)
var item1;
let item2;
let item3;
console.log(item3)
The answer to the first question is :
undefined and
Reference error
The answer to the second questi...
justcodingthings.hashnode.dev4 min read