Hoisting in Javascript
In Javascript (JS), variables and functions can be accessed before initializing it without any error anywhere in the program. This is known as Hoisting.
Javascript creates a Global Execution Context, GEC even before a program starts running. In the G...
dev21.hashnode.dev2 min read