Hoisting in JavaScript

Marcus Siegel
3 min readMar 20, 2021

Introduction

I‘m on a quest to become a JavaScript whiz! I’ve learned a bit about algorithms and frameworks, but I haven’t spent too much time on the under-the-hood aspect of JavaScript. Today, I’ll talk about hoisting and how it relates to our everyday JavaScript use. When you execute a piece of code, the JavaScript engine creates what is called the global execution context. The global execution context has two phases: creation and execution. During the creation phase, the JavaScript engine moves the variable and function declarations to the top of your code.

Variable hoisting

Variable hoisting means the JavaScript engine moves the variable declarations to the top of the script. The following example declares the counter variable and sets its value to 1:

console.log(counter); // undefined
var counter = 1;

However, the first line of code doesn’t cause an error because the JavaScript engine moves the variable declaration to the top of the script. Technically, the code looks like the following in the execution phase:

var counter;console.log(counter); // undefined
counter = 1;

Technically speaking, during the creation phase of the global execution context, the JavaScript engine places counter in the memory and initializes its value to undefined.

The let keyword

The following declares the variable counter with the let keyword:

console.log(counter);
let counter = 1;

This issues the following error:

"ReferenceError: Cannot access 'counter' before initialization"

The error message explains that counter is already in the heap memory. However, it hasn’t initialized.

Behind the scenes, the JavaScript engine hoists the variable declarations that use the let keyword. However, it doesn’t initialize those variables. Notice that if you access a variable that doesn’t exist, the JavaScript will throw a different error:

console.log(alien);
let counter = 1;

Here is the error:

"ReferenceError: alien is not defined"

Function hoisting

Like variables, the JavaScript engine also hoists the function declarations. It moves the function declarations to the top of the script. For example:

let x = 20,
y = 10;
let result = add(x,y);
console.log(result);
function add(a, b){
return a + b;
}

In this example, we called the add() function before defining it. The above code is equivalent to the following:

function add(a, b){
return a + b;
}
let x = 20,
y = 10;
let result = add(x,y);
console.log(result);

During the creation phase of the execution context, the JavaScript engine places the add() function declaration in the heap memory. To be precise, the JavaScript engine creates an object of the Function type and a function reference called add that refers to the function object.

Function expressions

The following example changes the add from a regular function to a function expression:

let x = 20,
y = 10;
let result = add(x,y);
console.log(result);
var add = function(x, y) {
return x + y;
}

If you execute the code, the following error will occur:

"TypeError: add is not a function"

During the creation phase of the global execution context, the JavaScript Engine creates the add variable in the memory and initializes its value to undefined. When executing the following code, add is undefined, hence, it isn’t a function:

let result = add(x,y);

add is assigned to an anonymous function only during the execution phase of the global execution context.

Arrow functions

The following example changes the add function expression to the arrow function:

let x = 20,
y = 10;
let result = add(x,y);
console.log(result);
var add = (x, y) => x + y;

The code also issues the same error as the function expression example because arrow functions are syntactic sugar for defining function expressions.

"TypeError: add is not a function"

Similar to the functions expressions, the arrow functions aren’t hoisted.

Summary

  • JavaScript hoisting occurs during the creation phase of the execution context that moves the variable and function declarations to the top of the script.
  • The JavaScript engine hoists the variables declared using the let keyword, but it doesn’t initialize them as the variables declared with the var keyword.
  • Function expressions and arrow functions aren’t hoisted.

--

--