OR

Returns true if any of the arguments are truthy, otherwise returns false.

Syntax 

OR(value1, value2, ...)

Usage examples 

Example 1

Input

1
{
2
"my_action": {
3
"value": 5
4
}
5
}

Formula

OR(my_action.value>5, my_action.value<100)

Output

true

Example 2

Input

1
{
2
"my_action": {
3
"value": 5
4
}
5
}

Formula

OR(my_action.value<5, my_action.value>100)

Output

false

Sample Actions 

Transform
My Action
Transform
OR
Transform
OR

Select an action to inspect.

You can also click "Copy actions" and paste them in your Tines story to see how they work.

Was this helpful?