Was this helpful?
||
This is the logical OR operator. In a comparison expression, it will evaluate to true if either the value on the left of the operator or the value on the right of the operator evaluates to true.
Example
if ( counter == 0 || incrCount == "Y")
counter += 1;
Last modified date: 08/02/2023