If statement ladder : null « Data Type « Flash / Flex / ActionScript






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");
        }

    }
  }
}

        








Related examples in the same category

1.Convert null to string
2.Checking for Null Values