What is Iteration?

  • Reepated sequences to simply advanced code
  • Operators include ++ or -- (urary), arithmetic (basic forms), and more (see table)

Loops

  • While loop: loops WHILE a condition is true, can also check inputs
  • For loop: loops FOR as long as a condition is met, stops after
  • Recursion: function calls ITSELF to repeat (recursing)
  • Nested iteration: loop inside a loop