=, == Equal to
In this section:
Precedence
8
Description
=, ==, or EQ evaluates to 1 (true) if its two operands are identical in value, or to 0 (false) if its two operands are not identical in value.
Example
1 = 2 –> 0 2 == 2 –> 1 'ABC' = 'ABCD' –> 0