Hoisting In JavaScript
Hoisting is a phenomenon in JS whereby memory is allocated to variable and function declarations even before the execution of the code starts. Declarations made using var are initialized with a default value undefined where those made using let and c...
prashant3003.hashnode.dev2 min read