Range Iteration
The rangeIteration function allows you to generate a specific number of iterations, to have control over the number of executions of the functions.

end: You must enter a numerical value which is equivalent to the maximum value of the range to iterate.
interval: A numerical value must be entered which is equivalent to the range between each iteration.
start: You must enter a numerical value which is equivalent to the initial value to iterate.
Step by Step :

Error: It is executed when the value entered in end is less than the value of start or no values were sent in each.
OutVars
Null
onFinish: It is executed when the iteration ends and it returns an array with the value of each iteration.
OutVars
Null
Iteration: It is executed for each iteration that is carried out and returns the value of that iteration.
OutVars
Null
Last updated
Was this helpful?