Most commonly asked JavaScript interview questions
What is Hoisting?
In javascript, Hosting is referred to the process where the interpreter allocated memory for variables and functions even before declaring it.
Example of Variable lifecycle:
let a; // Declaration
a = 100; //...
itsvinayak.hashnode.dev15 min read