Control flow: Iterate Dictionary/Array

Revision as of 22:01, 12 February 2024 by JosueGd (talk | contribs) (Created page with "<pre style="background-color: #ACC8E5; color: #112A46; border-radius: 10px; padding: 10px;"> This action is a specialized type of loop that can be used to iterate over all ele...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
This action is a specialized type of loop that can be used to iterate over all elements within a dictionary/array.

The current dictionary key/array index can be obtained within the loop using the following magic text strings:
* [iterator_dictionary_key]
* [iterator_array_index]

The current dictionary/array value can be obtained with the following magic text:
* [iterator_value]