Which logical operator returns true if at least one of the operands is true?
&& (AND)
|| (OR)
! (NOT)
!= (Not equal)
The logical OR operator (||) returns true if at least one of the operands is true. If both operands are false, the result will be false.
20 / 32