of     1   

pisuke25
#228287780Friday, December 01, 2017 8:45 AM GMT

Im Still new in LUA. Can someone explain what's iteration means?? Thank you :)
WAHJH
#228288016Friday, December 01, 2017 9:14 AM GMT

Definition of iteration 1 : the action or a process of iterating or repeating: such as a : a procedure in which repetition of a sequence of operations yields results successively closer to a desired result b : the repetition of a sequence of computer instructions a specified number of times or until a condition is met — compare recursion 2 : one execution of a sequence of operations or instructions in an iteration 3 : version, incarnation the latest iteration of the operating system
Niveum
#228288135Friday, December 01, 2017 9:26 AM GMT

In more simple terms it generally means to repeat or loop. In Rbx.Lua this tends to refer to: - While loops, which repeat (iterate) WHILE a certain condition is met - For loops, which iterate a specified number of times - Repeat loops, which repeats the loop UNTIL a certain condition is met.

    of     1