DEV Community

Shubham Khan
Shubham Khan

Posted on

Understanding JavaScript Hoisting: A Simple Guide

If you're new to JavaScript, you may have run into confusing situations where variables seem to be undefined or errors like ReferenceError pop up unexpectedly. This can often be traced back to a concept known as hoisting. But what is hoisting, and how does it affect your code?

In this guide, we'll break down the concept of hoisting and how it works in JavaScript. By the end, you'll understand why hoisting happens and how you can avoid common mistakes.

What is Hoisting?
Hoisting is JavaScript’s behavior of moving variable and function declarations to the top of their scope before the code runs. This means that declarations (not the assignments) are processed during a preparation phase before the actual execution of your code.

JavaScript goes through a creation phase first, where it allocates memory for variables and functions. However, the way it handles functions and variables is slightly different.

Function Hoisting: Fully Hoisted Definitions
Functions declared using the function keyword are hoisted with their full definition. This allows you to call or use a function before its actual declaration in the code.

For example:



sum(5, 3); // Output: 8

function sum(a, b) {
  console.log(a + b);
}


Enter fullscreen mode Exit fullscreen mode

Even though the sum() function is called before it’s declared in the code, it works perfectly because the function declaration is hoisted to the top of its scope during the creation phase.

Variable Hoisting: var, let, and const
Variable hoisting behaves differently from function hoisting, and it varies depending on whether you use var, let, or const.

1. var Declarations
When you declare a variable using var, it is hoisted to the top of its scope with a default value of undefined. This means that you can access the variable before its declaration, but until you assign a value to it, the variable will hold undefined.



console.log(city); // Output: undefined
var city = "New York";
console.log(city); // Output: "New York"


Enter fullscreen mode Exit fullscreen mode

In this example, city is hoisted with a value of undefined initially. Once the value "New York" is assigned, the second console.log() correctly outputs "New York."

2. let and const Declarations
With let and const, variables are also hoisted, but they remain uninitialized. This means that if you try to access them before their declaration, you'll get a ReferenceError.



console.log(name); // ReferenceError: Cannot access 'name' before initialization
let name = "John Doe";


Enter fullscreen mode Exit fullscreen mode

This error happens because let and const variables exist in something called the Temporal Dead Zone (TDZ) between the start of their scope and the point where they are actually declared. During this time, you cannot reference the variable.

Key Difference Between let and const
Both let and const behave similarly in terms of hoisting, but const requires you to assign a value during declaration, while let allows you to declare a variable without immediately assigning a value.



const name = "John Doe"; // Must be initialized
let age; // Can be declared without assignment


Enter fullscreen mode Exit fullscreen mode

Hoisting in Practice
Let’s look at an example that demonstrates both function and variable hoisting in action:



console.log(city); // Output: undefined
sum(3, 4);    // Output: 7

function sum(x, y) {
  console.log(x + y);
}

var city = "New York";
console.log(city); // Output: "New York"


Enter fullscreen mode Exit fullscreen mode

Here, the sum function is hoisted with its full definition, so it can be called before the function is declared. However, the city is hoisted with a value of undefined, which explains why the first console.log() outputs undefined. Once the assignment occurs, the second console.log() outputs the correct value.

Tips for Avoiding Hoisting Pitfalls
To avoid issues caused by hoisting, follow these best practices:

  1. - Use let and const instead of var to avoid accessing variables before their declaration.
  2. - Declare variables and functions at the top of their scope to ensure your code behaves predictably.

Recap of Key Hoisting Concepts

  • Hoisting refers to JavaScript’s behavior of moving declarations to the top of their scope before the code runs.
  • Functions declared with function are hoisted with their full definitions, allowing them to be used before they are declared.
  • Variables declared with var are hoisted with a default value of undefined, while variables declared with let and const remain uninitialized, causing a ReferenceError if accessed before declaration.
  • The Temporal Dead Zone (TDZ) applies to let and const, preventing them from being accessed before they are initialized.

By understanding hoisting, you can avoid common issues in JavaScript and write more predictable code. With practice, these concepts will become second nature.

Top comments (0)