Skip to content

Logical OR

Logical OR operator (||) returns true if atleast one of two values is true.

Syntax
operand1 || operand2
Example
a || b

true || false
# true

false || false
# false