Adding a default statement : Switch : Statement Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » Statement » Switch »

 

Adding a 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");
            break;
          case 6:
            trace("6");
            break;
          case 1:
            trace("1");
            break;
          default:
            trace("none of the cases were met");
        }
   
    }
  }
}

        



Leave a Comment / Note


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


Flash / Flex / ActionScript examples

 Navioo Statement
» Switch