Written a blog on hoisting of let and const data types.

Hoisting is the process that makes some type of variables accessible/usable in the code even before they are declared. Before the execution, the code is scanned for variable declarations in the global scope. 

24 Aug 2022

Keywords
javascript
writing