DEV Community

Sarthak Rajput
Sarthak Rajput

Posted on • Edited on

Hoisting- Mastering the Art of Code Elevation

Table Of Contents

Introduction
What is hoisting?
JavaScript code execution context
The concept of Variable hoisting
Function Hoisting
Temporary Dead Zone(TDZ)
Conclusion

Introduction
Developers frequently experience a complex relationship with JavaScript due to occasional unexpected behavior. Proficiency in JavaScript fundamentals, including its idiosyncrasies, can empower developers to effectively debug and craft elegant code. This blog post is dedicated to unraveling one such distinctive feature—hoisting, presented using multiple images. After perusing this blog, you'll be on your way to becoming a top-notch developer.

What is hoisting?
JavaScript Hoisting is the phenomenon in which the interpreter seems to shift the declaration of functions, variables, classes, or imports to the beginning of their scope before running the code , making them available for use throughout that scope, regardless of where they are declared in the code. It's important to note that only the declarations themselves are hoisted, while any assignments or initializations remain in their original positions.
In a simpler way- In JavaScript, Wherever you have declared the variable, it will move to the Top of the scope irrespective of their Global/local scopes.

JavaScript code execution context
The term "JavaScript Code Execution Context" denotes the surroundings in which JavaScript code operates. It encompasses multiple facets of code execution, encompassing scope and its chain, declarations of variables and functions, as well as the utilization of the "this" keyword.
Basically, the JavaScript execution context is divided into two parts:

1.Creation Phase: In the Creation Phase, Variables are allotted their memory space and initialized with the value undefined.

2.Execution phase: In execution phase, declared variables are assigned the values or code and used to process further operations.

The concept of Variable hoisting
Variable hoisting in JavaScript is a mechanism that seemingly elevates variable declarations defined with the var keyword to the top of their enclosing function or global scope during the compilation phase, prior to the actual code execution. This effect creates the illusion that variable declarations are "lifted" to the top of their respective scopes.
Lets explain with a simple example:

Function Hoisting
Function hoisting in JavaScript is a phenomenon that involves the apparent relocation of function declarations to the beginning of their enclosing scope during the compilation phase. This relocation grants functions accessibility throughout their scope, even before their physical appearance in the code. Consequently, you have the ability to invoke a function prior to declaring it in your code, without triggering any errors. This principle of function hoisting pertains to both named and anonymous functions.
Lets understand with the help of an example:

Temporal Dead Zone(TDZ)
The term "temporal dead zone" in JavaScript signifies a phase in code execution wherein variables declared using let and const are recognized as being within the scope but have not yet received an assigned value. In essence, these variables are in a state of "temporary unavailability" during this period.
Within the temporal dead zone (TDZ), which extends from the moment of variable declaration until it is initialized with a value, any attempt to access the variable will trigger a "Reference Error". This safeguards against the utilization of variables before they are properly initialized, contributing to improved code reliability and safety.
The temporal dead zone is a protective feature in JavaScript that ensures variables declared with let and const are only accessible after they have been properly initialized, preventing the use of uninitialized variables and potential bugs.

Conclusion
In conclusion, hoisting in JavaScript is a noteworthy and sometimes perplexing feature that impacts how variables and function declarations are processed during code execution. Understanding hoisting is vital for writing clean and predictable JavaScript code. By comprehending how hoisting works, you can harness its power to organize your code effectively and avoid common pitfalls, ultimately becoming a more proficient JavaScript developer.

Top comments (0)