The logical AND operator (&&) returns the boolean value TRUE if both operands are TRUE and returns FALSE otherwise. The operands are implicitly converted to type boolean prior to evaluation, and the result is of type boolean.
Expression && Expression
> PRINT TRUE && TRUE
TRUE
> PRINT TRUE && FALSE
FALSE
> PRINT FALSE && TRUE
FALSE
> PRINT FALSE && FALSE
FALSE