Hoisting in Javascript: The Complete Overview
Reading Time: 5 minutes Hoisting in javascript refers to the process whereby the interpreter appears to move the declaration of functions, variables(var, let, const), or classes to the top of their scope, prior to execution of the code or we can say that while compiling the code. Also, Hoisting is a concept in JavaScript, not a feature. So let’s take a look into this concept. Introduction to the JavaScript Continue Reading