Checking for Null Values : null « Data Type « Flash / Flex / ActionScript






Checking for Null Values

 

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

        var weather:String = "rain";
        
        if (weather != null) { trace("checkWeather"); }
        
        if (weather) { trace("checkWeather"); }

    }
  }
}

        








Related examples in the same category

1.Convert null to string
2.If statement ladder