Are let and const hoisted?
What is hoisting?
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. For each type of data, t...
vigneshsadhu.hashnode.dev2 min read