Skip to main content
January 9, 2008
Question

== is equalivant to what is not equalivant to?

  • January 9, 2008
  • 4 replies
  • 453 views
sorry for the stupid question but
== is equalivant to what is "not equalivant to"?
thank you
This topic has been closed for replies.

4 replies

January 9, 2008
ok
i will try that also. thank you
January 9, 2008
also, AS3 now has === and !== which test for (and not) strict equality, including typing (so no automatic conversion of different data types is performed... this is different from the == which would equate something that had a value of 0 to something that had a value of false, for isntance.

also, keep in mind, that another way to do it is to negate an expression, like: (a!=b) -----> !(a==b)
January 9, 2008
thnak you
Known Participant
January 9, 2008
Not equal to is !=

If you look in the help files under ActionScript 3.0 Language and Components Reference ==> Operators, you can get all the info you need (and more). You can also just search for inequality.