AnyAreFalse Function
The AnyAreFalse function returns true if any of the provided conditions is false. Otherwise false.
Syntax
AnyAreFalse(condition1, condition2, ...)
The AnyAreFalse function returns true if any of the provided conditions is false. Otherwise false.
Arguments
condition
Boolean - Conditions to evaluate.
Remarks
Example:
AnyAreFalse(5=25, "hello"="goodbye", false); // returns true
Example:
AnyAreFalse(5=5, "hello"="hello", false); // returns false