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-ofloop, the Spread operator, and some other language constructs are data consumers. They consume iterable data. - Iterable data structures
Ask