Skip to main content



NoneAreTrue Function

The NoneAreTrue function returns true if none of the provided conditions is true. Otherwise false.

Syntax

NoneAreTrue(condition1, condition2, ...)

The NoneAreTrue function returns true if none of the provided conditions is true. Otherwise false.

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