Working with the switch Statement : Switch : Statement Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » Statement » Switch »

 

Working with the switch Statement


 

//The basic structure of a switch statement is:
/*
switch(expression){
  case testExpression:
    statement;
  [case testExpression2:
    statement;
  default:
    statement;]
}
*/
package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){

        var myVariable:Number = 6;
        switch(myVariable){
          case 10:
            trace("10");
          case 6:
            trace("6");
          case 1:
            trace("1");
        }

    }
  }
}
6
1

        



Leave a Comment / Note


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


Flash / Flex / ActionScript examples

 Navioo Statement
» Switch