Hoisting and TDZ
What is hoisting
When a JavaScript code runs it creates an execution context. which helps in determining what code is currently running and helps in allocating memory for every function and variable declaration.
The mechanism of allocating memory fo...
prathmesh.hashnode.dev4 min read