For-Each Loops
For-Each loops are different from the other loops I mentioned in Loops, as they are specifically designed for traversing an array (accessing every element in an array).
Let's say this was an array that you wanted to traverse through.
If you had a for-each loop that you wanted to use to traverse this away, it'll access each element left to right. For example, if I were to use a for-each loop and
Here's its syntax:
Item
This is the current item that the for-each loop is on. However, you can only access its value— you can't change it or anything.
Collection
This is just the collection that the for-each loop is traversing through. The collection can be basically anything that can hold more than one value.
Last updated