Level Up Coding

Coding tutorials and news. The developer homepage gitconnected.com && skilled.dev && levelup.dev

Follow publication

Member-only story

Which is faster: for, for…of, or forEach loops in JavaScript

Jayanth babu S
Level Up Coding
Published in
4 min readJun 29, 2020

Photo by Djim Loic on Unsplash

There are different ways to loop over arrays in JavaScript, but it can be difficult choosing the right one. There is a classic JavaScript for loop, JavaScript forEach method, and the for…of loop, introduced in the sixth edition of EcmaScript (ES6), allows the programmer to loop over the actual iterable objects.

Before diving in, explore more in-depth articles on web development at my personal website:

Loops offer a quick and easy way to do something repeatedly. In this chapter, I am going to discuss different iteration statements available in JavaScript and also which one will execute fast and provides better performance.

Loops to iterate over arrays

  1. for
  2. for…of
  3. forEach

To iterate over the array, let's create an array with 50000 elements to calculate the execution time. we can create an array that contains 50000 elements by two approaches.

for loop

The most basic type of iteration method in JavaScript is the for loop. It takes three expressions; a variable declaration, an expression to be evaluated before each iteration, and an expression to be evaluated at the end of each iteration.

The JavaScript for loopiterates the elements for the fixed number of times. It should be used if the number of iteration is known. The syntax for the loop is given below.

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Written by Jayanth babu S

https://programwithjayanth.com/ I am a Senior Front-End Engineer with years of experience and specialized in Front-End Web technologies.

Responses (7)

Write a response