Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix misunderstanding about for..of with plain objects in iterables article #3831

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions 1-js/05-data-types/06-iterable/article.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,23 @@

Of course, Arrays are iterable. But there are many other built-in objects, that are iterable as well. For instance, strings are also iterable.

If an object isn't technically an array, but represents a collection (list, set) of something, then `for..of` is a great syntax to loop over it, so let's see how to make it work.
If an object isn't technically an array, but represents a collection (list, set) of something, then `for..of` is a great syntax to loop over it - but only if the object is properly set up to be iterable.


## Symbol.iterator

We can easily grasp the concept of iterables by making one of our own.
We can make any object iterable by implementing the `Symbol.iterator` method. This is a special built-in symbol that defines how the object should be iterated.

For instance, we have an object that is not an array, but looks suitable for `for..of`.

Like a `range` object that represents an interval of numbers:
For example, let's create a `range` object that represents an interval of numbers:

```js
let range = {
from: 1,
to: 5
};

// We want the for..of to work:
// for(let num of range) ... num=1,2,3,4,5
// This will NOT work yet:
// for (let num of range) ... → TypeError: range is not iterable
```

To make the `range` object iterable (and thus let `for..of` work) we need to add a method to the object named `Symbol.iterator` (a special built-in symbol just for that).
Expand Down