What is the difference between for... in and for... of statements in JavaScript
Published
12 Jan 2023
Summary
Both for...of and for...in statements iterate over lists; the values iterated on are different though, for...in returns a list of keys on the object being iterated, whereas for...of works on an iterable object and returns the result of the iterators implementation.
💡
An object is iterable if it implements the Symbol.iterator property. Some built-in types like Array, Map, and Set already have this implemented.
for...in
for...in sometimes written as for-in returns the index value for the specific loop.
let numbers = [1,2,3];numbers['four'] = 4;numbers.five = 5;
for (let i in numbers) { console.log(i);}JavaScript Code
'0''1''2''four''five'Console Output
If you want to gain access to the value when using for..in on an array, you use the index of the current loop to access from the array object.
let numbers = [1,2,3];numbers['four'] = 4;numbers.five = 5;
for (let i in numbers) { console.log(numbers[i]);}JavaScript Code
12345Console Output
for...of
for...of sometimes written as for-of gives you the value returned by the iterator implementation. This can be different depending upon how the iterater was implemented. For example, the built in iterator implementation for array iterator yields all the values in the array, ignoring non-index properties.
let numbers = [1,2,3];numbers['four'] = 4;numbers.five = 5;
for (let i of numbers) { console.log(i);}JavaScript Code
123Console Output
Using Symbol.iterator, you can create custom iterators that can be used inside of for-of Array spreads and other iterable loops. For example, you could create a new iterator that iterated over an array in reverse.
let numbers = [1,2,3];numbers['four'] = 4;numbers.five = 5;
const createCustomIterator = (inputArray) => ({ [Symbol.iterator]() { let i = inputArray.length; return { next: () => ({ value: inputArray[--i], done: i < 0 }) } }})
for (let i of createCustomIterator(numbers)) { console.log(i);}JavaScript Code
321Console Output
In this example, createCustomIterator is a function that takes an array and returns an implementation iterator. It could be used on multiple arrays to reverse iterate over them.
Similar articles

Sorting Algorithms Explained
Bubble, selection, insertion, merge, quick, and heap sort: how each one works, where it shines, where it struggles, and animated demos that run the real algorithm code on the same starting data every time.
13 July 2026

Set Membership Testing: From Arrays to Bloom Filters
Every time Chrome warns you a site might be malicious, it just answered a membership question: is this URL in a set of bad ones? Here's how that check works, from a plain array to the probabilistic Bloom filter that makes it possible at scale.
10 July 2026

Why You Shouldn't Use Floating Point Math for Money in JavaScript
JavaScript numbers look like ordinary decimals, but they are stored as binary floating point. That is why 0.1 + 0.2 is not 0.3, and why checkout totals, tax lines, and ledger comparisons can quietly go wrong.
4 July 2026

RFC 10008: HTTP Finally Gets a Query Method
For thirty years, complex searches have been squeezed into GET query strings or smuggled through POST. RFC 10008 standardises QUERY: a safe, idempotent HTTP method with a request body. Here is why that matters and when you can actually use it.
3 July 2026
