Iterator
Last updated
Last updated
[data/array/Iterator]
Iterates through items of an array. Examples: https://github.com/Cranq-io/cranq-tutorials/tree/main/reference/1_application_flow/1_2_iterators
Keywords: loop, foreach
array: any[]
Recieves array to be iterated over. Example: [1,2,3]
item: any[][number]
Sends current item. Example: 1
index: number
Sends current index. Example: 0
done: any[]