Adding a break statement to switch statement : Switch : Statement Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » Statement » Switch »

 

Adding a break statement to switch 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");
        }
        
    }
  }
}
6

        



Leave a Comment / Note


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


Flash / Flex / ActionScript examples

 Navioo Statement
» Switch