Before moving further to understand what is hoisting lets understand where does this term Hoisting comes from. I write a simple code down below var a=10; function learn(){ console.log("hello world"); } console.log(a); learn(); This is a simple ...
webdeveloper2212.hashnode.dev5 min read
No responses yet.