The logical inequality operator (!=) returns false if two values are equal and true if they aren't. : Comparison Operators : Language Flash / Flex / ActionScript examples


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

 

The logical inequality operator (!=) returns false if two values are equal and true if they aren't.


 

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

        



Leave a Comment / Note


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


Flash / Flex / ActionScript examples

 Navioo Language
» Comparison Operators