An if statement with no else : If : Statement Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » Statement » If »

 

An if statement with no else


 

package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){
        if (10) {
          trace(1>10);
        }
    }
  }
}

        



Leave a Comment / Note


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


Flash / Flex / ActionScript examples

 Navioo Statement
» If