Logical OR
|
Signature |
|---|
|
Logic_Or(condition1, condition2) |
|
Description |
|---|
|
Does a logical OR comparison of two conditions. The result is true, if any of the inputs are true, otherwise it is false. |
|
Result |
|---|
|
True if any of condition1 and condition2 are true, otherwise false. |
|
Arguments |
|
|---|---|
|
condition1 |
An expression which is treated as a boolean. |
|
condition2 |
An expression which is treated as a boolean. |