Every Array has a function which you can use to create an iterator. This function can only be accessed by using the Symbol.iterator
as a key on the Array. Once you have created your iterator, you can use it to iterate through each value of the Array using .next
or a for loop
.