Skip to content
Martin Danielsson edited this page Jul 23, 2015 · 3 revisions

Or operator. Returns true if one of the parameters return true.

What Type
Syntax Or(a, b)
a bool
b bool
Return type bool

The Or operator first evaluates the first parameter. Only if the first parameter evaluates to false, the second parameter is evaluated.

Example: Or(Contains($title, "Lord"), Contains($title, "Ring"))

Clone this wiki locally