// true
2 <= 2;
// true
10 <= 3;
// false
"Allen" <= "Jack";
// true
"Jack" <= "Allen";
// false
"11" <= "3";
//true
"11" <= 3;
// numeric comparison
// false
"C" <= "abc";
// false
"A" <= "a";
// true
<> (inequality)
Availability
Flash 2.
Usage
expression1 <> expression2
Parameters
expression1,expression2
or function.
Returns
A Boolean value.
Description
Operator (inequality); tests for the exact opposite of the
, the result is
expression2
data types being compared:
•
Numbers, strings, and Boolean values are compared by value.
•
Variables, objects, arrays, and functions are compared by reference.
This operator was deprecated in Flash 5, and Macromedia recommends that you use the
operator.
!=
See also
!= (inequality)
A number, string, Boolean value, variable, object, array,
. As with the
false
==
operator. If
==
operator, the definition of equal depends on the
is equal to
expression1
<> (inequality)
257
Need help?
Do you have a question about the FLASH MX 2004 - ACTIONSCRIPT and is the answer not in the manual?