JavaScript for...in Loop

Examples

Iterate (loop) over the properties of an object:

const person = {fname:"John", lname:"Doe", age:25};
let text = "";
for (let x in person) {
  text += person[x] + " ";
}
Try it Yourself »

Iterate (loop) over the values of an array:

const cars = ["BMW", "Volvo", "Saab", "Ford"];
let text = "";
for (let x in cars) {
  text += cars[x] + " ";
}
Try it Yourself »

More examples below.


Description

The for...in statements combo iterates (loops) over the properties of an object.

The code block inside the loop is executed once for each property.

Note

Do not use for...in to iterate an array if the index order is important. Use a for loop instead.

See Also:

The JavaScript for...in Tutorial


Syntax

for (x in object) {
  code block to be executed
}

Parameters

Parameter Description
x Required.
A variable to iterate over the properties.
object Required.
The object to be iterated


JavaScript Loop Statements

StatementDescription
breakBreaks out of a loop
continueSkips a value in a loop
whileLoops a code block while a condition is true
do...whileLoops a code block once, and then while a condition is true
forLoops a code block while a condition is true
for...ofLoops the values of any iterable
for...inLoops the properties of an object

More Examples

Iterate over the properties of window.location:

let text = "";
for (let x in location) {
  text += x + "
";
}
document.getElementById("demo").innerHTML = text;
Try it Yourself »

Browser Support

for...in is an ECMAScript1 (ES1) feature.

ES1 (JavaScript 1997) is fully supported in all browsers:

Chrome Edge Firefox Safari Opera IE
Yes Yes Yes Yes Yes Yes

Copyright 1999-2023 by Refsnes Data. All Rights Reserved.