Hoisting and Temporal Dead Zone in JavaScript
Hello there!
In this blog we will be discussing what Hoisting and Temporal Dead Zone actually are !
Let us have a look at this code snippet
Example 1 :
var a = 10;
function Greetings(){
console.log('hey!');
}
Greetings(); //hey!
console.log(...
learnwithakshitha.hashnode.dev3 min read