anytrue returns true if any element in a given collection is true or "true". It also returns false if the collection is empty.
anytrue
true
"true"
false
anytrue(list)
> anytrue(["true"])true> anytrue([true])true> anytrue([true, false])true> anytrue([])false
On this page: