Search⌘ K

The Role of the Iterable Interface

understand iterators and their data flow, create independent iterators and connect the dots using ES6

We'll cover the following...

We can understand iterables a bit better by concentrating on data flow:

  • The for-of loop, the Spread operator, and some other language constructs are data consumers. They consume iterable data.
  • Iterable data structures
...