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...
Jan 7, 20222 min read174
