If the source array is empty, this function returns false.
Specifies the array to work with.
Specifies the condition that any element must satisfy for the function to return true.
1. |
In the following example, at least one of the elements in the array satisfies the condition that the element be greater than 50, so the function returns true. ANY([100, 0,
-100, 5, 60], Item >
50)
|
2. |
In this example, none of the elements are positive, so the function returns false. ANY([0, -100,
-50, -5], Item > 0)
|