Iterating through JavaScript Objects — 5 Techniques and Performance Tests.

Bolaji Ayodeji
Backticks & Tildes
Published in
3 min readMar 10, 2019

Developers tend to know how to iterate through JavaScript Arrays easily but most times they tend to get confused while working with JavaScript Objects especially beginners and intermediates. In this article, I’d show you Five (5) different ways of iterating through JavaScript Objects and some performance comparison tests to show you which is faster and more efficient.

PS: This article was published first on my blog here

* Useful tips :)

Property flags

Object properties, besides a value, have three special attributes (also known as “flags”):

  • writable – if true, can be edited, else it's read-only.
  • enumerable – if true, then listed in loops.
  • configurable – if true, the property can be deleted and these attributes can be modified.

When we create a property “the usual way”, all of them are true. But we can change them anytime.

The method Object.getOwnPropertyDescriptor allows us to query the full information about a property.

What does an enumerable property mean?

Enumerable properties are those properties whose internal enumerable flag is set to true, which is the default for properties created via simple assignment.

Basically, if you create an object via obj = {foo: 'bar'} or something thereabouts, all the properties are enumerable.

1. for…in loop

The for...in loop statement can be used to iterate over all non-Symbol, enumerable properties of an object.

2. Object.keys

The Object.keys() method returns an array of Object keys. This creates an array that contains the properties of the object. You can then loop through the array to get the keys and values you need.

3. Object.values

The Object.values() method returns an array of Objects Values. This creates an array that contains the properties of the object. You can then loop through the array to get the values you need.

4. Object.getOwnPropertyNames

The Object.getOwnPropertyNames() method returns an array of all properties (including non-enumerable properties except for those which use Symbol) found directly in a given object. This creates an array that contains the properties of the object. You can then loop through the array to get the keys and values you need.

5. Object.entries

The Object.entries() method returns an array of a given object's own enumerable property [key, value] pairs.

Performance Comparison

Now let's test all these techniques and compare each one based on their speed and performance to determine which is faster.

Most browsers like Chrome and Firefox implement high-resolution timing in performance.now(). The performance.now() method returns a DOMHighResTimeStamp, measured in milliseconds.

Usage

let start = performance.now();// code to be timed...let duration = performance.now() - start;

Let’s begin testing…

Test Results

According to our tests, here are the results in ascending order;

╔═══════════╦════════════════════════════╦═════════════════════════╗
║ Rank ║ Technique ║ Time(ms) ║
╠═══════════╬════════════════════════════╬═════════════════════════╣
║ 1 ║ for...in loop ║ 0.8450000023003668 ms ║
║ 2 ║ Object.keys ║ 1.32499999017 ms ║
║ 3 ║ Object.entries ║ 1.63499999326 ms ║
║ 4 ║ Object.values ║ 2.05499998992 ms ║
║ 5 ║ Object.getOwnPropertyNames ║ 2.12500002817 ms ║
╚═══════════╩════════════════════════════╩═════════════════════════╝

So, according to these results, the fastest way to iterate through JavaScript Objects is the for…in loop. Now, this doesn't mean the other methods are void or useless, it all depends on use cases.

The problem with a for...in loop is that it iterates through properties in the Prototype chain. It iterates over object properties. Javascript arrays are just a specific kind of object with some handy properties that help you treat them as arrays, but they still have internal object properties and you don't mean to iterate over these. for...inalso iterates over all enumerable properties and not just the array’s elements. This can also lead to unexpected results.

When you loop through an object with the for...in loop, you need to check if the property belongs to the object. You can do this with hasOwnProperty.

A better and more efficient way to loop through objects in ES6 is to first convert the object into an array using Object.keys() , Object.values() , Object.getOwnPropertyNames or Object.entries() . Then you loop through the array to get the keys and values.

Reference

--

--

Bolaji Ayodeji
Backticks & Tildes

Software Engineer, Content Creator, and Developer Advocate.