For Statements

  • The for statement provides built-in places to define a counter variable, condition, and operation to increment or decrement the counter so you don't have to write seperate statements.
    • for (var i:int = 0; i < 361; i +=10){
      }
  • so how would you write the last loop with the for statement?
<