Hoisting
๐ Hoisting is the process in which interpreter moves all the declaration to the top of the scope before execution.
This means that we can access functions, variables before they have been declared in the source code.
In JavaScript Variable declratti...
sudhanshusoni.hashnode.dev2 min read