The int type is perfect for counters, and is frequently found in for loops : Int : Data Type Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » Data Type » Int »

 

The int type is perfect for counters, and is frequently found in for loops


 

package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){
         for (var i:int 0; i < 1000; i++){
         }
    }
  }
}

        



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


Flash / Flex / ActionScript examples

 Navioo Data Type
» Int