The NoneAreTrue function returns true if none of the provided conditions is true. Otherwise false.
Syntax
|
The NoneAreTrue function returns true if none of the provided conditions is true. Otherwise false. |
|
NoneAreTrue(condition1, condition2, ...) |
|
Arguments: |
|
|
condition |
Boolean - Conditions to evaluate. |
Remarks
- Example: NoneAreTrue(5=5, "hello"="hello", true) returns false.
- Example: NoneAreTrue(5=25, "hello"="hello", true) returns true.
Comments
0 comments
Article is closed for comments.