JavaScript Hoisting
During the creation phase, the JavaScript engine moves the variable and function declarations to the top of your code. This feature is known as hoisting in JavaScript.
when you execute JS code, JavaScript Engine creates Gobal Execution Context - wh...
kushalgupta.hashnode.dev3 min read