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