OperatorDescriptionExampleResult
&&AND: true if both operands are truetrue && truetrue
&&Short-circuits on first falsy valuefalse && truefalse
| |OR: true if at least one operand is truetrue || falsetrue
!NOT: inverts the truthiness of the operand!truefalse
!Inverts the truthiness of the operand!falsetrue