Mega Code Archive

 
Categories / Flash ActionScript / Statement
 

If Statements

if (logical expression) {    // code to execute if the expression is true } package{   import flash.display.Sprite;      public class Main extends Sprite{     public function Main(){         var weather:String = "rain";                  if (weather == "rain") {            trace("bringUmbrella");         }     }   } }