Hoisting in JS
Before going into the definition of hoisting, let's consider these examples. What do you expect would be the answer to these questions?
Example 1
a = 10;
var a;
console.log(a);
Error? undefined? hmm, no. The output is 10.
What about the below exampl...
jainshreyansh.com3 min read