For Each
Iterates over a list and performs an action for each item.
Category: Flow Control & Logic · Group: Flow Control · Activity name: ForEachLoop

Example
for item in items:
WriteLine(item)
Inputs
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
| Collection | array | Yes | `` | The list or collection of items to be iterated over during the loop. |
| Iterator Name | string | Variable name to hold the current item in each iteration. | ||
| Iterator Index | string | Variable name to hold the current index in each iteration. |
Branches
tasks