Specifications

operand1 == operand2
Returns true if the operands are equal; otherwise returns false.
== operator
operand1 != operand2
Returns true if the operands are not equal; otherwise returns false.
!= operator
operand1 === operand2
Returns true if the operands are equal and of the same type;
otherwise returns false.
=== operator
operand1 !== operand2
Returns true if the operands are not equal or if the operands are of
different types;otherwise returns false.
!== operator
operand1 > operand2
Returns true if operand1 is greater than operand2; otherwise returns
false.
> operator
operand1 >= operand2
Returns true if operand1 is greater than or equal to operand2;
otherwise returns false.
>= operator
operand1 < operand2
Returns true if operand1 is less than operand2; otherwise returns
false.
< operator
operand1 <= operand2
Returns true if operand1 is less than or equal to operand2; otherwise
returns false.
<= operator
Bit-wise operators
operand1 & operand2
Returns the result of a bit-wise AND on the operands (operand1 and
operand2).
& operator
operand1 ^ operand2
Returns the result of a bit-wise XOR on the operands (operand1 and
^ operator
395
Enfocus Switch 10