Mega Code Archive

 
Categories / Flash ActionScript / Data Type
 

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