Hoisting in JavaScript
While learning JavaScript, I came across an amazing feature of JavaScript,
which is called Hoisting
So, What is Hoisting ?
JavaScript allow us to use variables and functions, before they are declared
like this,
hoisting = "example";
console.l...
devwithavatar.hashnode.dev2 min read
youssef imlyhen
ysf
great simple explanation, thank you!