Hoisting in javascript variable
In these post we will discuss about the main idea of hoisting in variable.
Hosting in variable -
For var keyword -
If we are given with the following code snippets -
console.log(newVar); /* => undefined */ var newVar = "random string"
For th...
mainak99.hashnode.dev1 min read