#hoisting
Read more stories on Hashnode
Articles with this tag
Introduction Let's have a look at this code: console.log(a); // Reference Error and TDZ let a = 10; Reference error occurs because variable a is...