JavaScript Iterables vs Iterators
Briefly

Understanding these concepts is crucial because they are everywhere in JavaScript. Whenever you want to go through a list of items, you're likely to use these concepts.
An iterable must adhere to the Iterable Protocol, which requires a [[Symbol.iterator]] method. Iterables provide sequential access to elements and can be customized for iteration.
Read at Medium
[
add
]
[
|
|
]