Skip to content
Advertisement

How to iterate over a JavaScript object?

I have an object in JavaScript:

JavaScript

I want to use a for loop to get its properties. And I want to iterate it in parts (not all object properties at once).

With a simple array I can do it with a standard for loop:

JavaScript

But how to do it with objects?

Advertisement

Answer

For iterating on keys of Arrays, Strings, or Objects, use for .. in :

JavaScript

With ES6, if you need both keys and values simultaneously, do

JavaScript

To avoid logging inherited properties, check with hasOwnProperty :

JavaScript

You don’t need to check hasOwnProperty when iterating on keys if you’re using a simple object (for example one you made yourself with {}).

This MDN documentation explains more generally how to deal with objects and their properties.

If you want to do it “in chunks”, the best is to extract the keys in an array. As the order isn’t guaranteed, this is the proper way. In modern browsers, you can use

JavaScript

To be more compatible, you’d better do this :

JavaScript

Then you can iterate on your properties by index: yourobject[keys[i]] :

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement