What is Hoisting and Temporal Dead Zone(TDZ)
JavaScript Hoisting refers to the process whereby the interpreter appears to move the declaration of functions, variables or classes to the top of their scope, prior to execution of the code.
Hoisting allows functions to be safely used in code before...
swapnilultron.hashnode.dev3 min read