If Statements : If : Statement Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » Statement » If »

 

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

    }
  }
}

        



Leave a Comment / Note


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


Flash / Flex / ActionScript examples

 Navioo Statement
» If