ForEach

ForEach

Repeats content in a loop, iterating through one or more arrays in parallel. Arrays must be of the same size. For each "A in B" declaration, variable "A" will contain one value in the "B" array.

ForEach( .A in .ArrayA, ; One or more arrays to loop through .B in .ArrayB, ... ) { ; Content to repeat }