Use the = operators to check if one value is less than or equal to, or greater than or equal to, another value : Comparison Operators : Language Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » Language » Comparison Operators »

 

Use the = operators to check if one value is less than or equal to, or greater than or equal to, another value


 

package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){
        trace(<= 6);   // Displays: true
        trace(>= 5);   // Displays: true
    }
  }
}

        



Leave a Comment / Note


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


Flash / Flex / ActionScript examples

 Navioo Language
» Comparison Operators