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