Performs a logical disjunction on two expressions.
result = expression1 || expression2
If either or both expressions evaluate to True, result is True. The following table illustrates how result is determined:
If expression1 is |
And expression2 is |
The result is |
---|---|---|
True | True | True |
True | False | True |
False | True | True |
False | False | False |
JScript uses the following rules for converting non-Boolean values to Boolean values: