If statement ladder : Null : Data Type Flash / Flex / ActionScript examples


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

 

If statement ladder


 


package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){
        var weather:String = "rain";
        
        if (weather == "rain") {
           trace("bringUmbrella");
        else if (weather == "snow"){
           trace("bringCoat");
        else if (weather == "sun") {
           trace("bringSunscreen");
        }

    }
  }
}

        



Leave a Comment / Note


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


Flash / Flex / ActionScript examples

 Navioo Data Type
» Null