Hoisting in JS & its importance
What is Hoisting in Javascript? Hoisting in Javascript is basically the ability to use or refer to a variable or a function before it has been declared in the code. The javascript interpreter does this by reading the whole code all at once then moving the variables at the top of the scope of the […]