The equal operator (==) determines if the values of the left and right operands are equal, and if they are the same, it returns TRUE.
Expression == Expression
> PRINT 1 == 2
FALSE
> PRINT 1 == 1.0
TRUE
> PRINT TRUE == FALSE
FALSE
> PRINT "HELLO" == "hello"
FALSE