The general form of a switch statement : Switch : Statement Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » Statement » Switch »

 

The general form of a switch statement


 

switch (testExpression) {
  case caseExpression:
    // case body
  case caseExpression:
    // case body
  default:
    // case body
}


package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){

        var animalName:String = "dove";
        switch (animalName) {
          case "turtle":
            trace("Yay! 'Turtle' is the correct answer.");
          case "dove":
            trace("Sorry, a dove is a bird, not a reptile.");
          default:
            trace("Sorry, try again.");
        }

    }
  }
}

        



Leave a Comment / Note


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


Flash / Flex / ActionScript examples

 Navioo Statement
» Switch