/
or

or



Function: or() / ||

Returns the result of a logical OR operation on two or more arguments. I.e. if one or all of the passed arguments are true (or are non-null and non-zero), then or() will return true.

Syntax

  1. or(cond1, cond2[,..,condN])
  2. cond1 || cond2
ArgumentTypeDescription
cond1BooleanA logical value to be tested
cond2BooleanA logical value to be tested
condNBooleanAny number of additional optional logical values to be tested

Examples

in.calls > 20 || in.duration > 1000

Returns the following depending on the values of in.calls and in.duration

in.callsin.durationResult
159000
1511001
259001
2511001

See Also

Related content

Internal Variables
Internal Variables
Read with this
or
More like this
cache
cache
Read with this
or
More like this
or
More like this
or
More like this