Condition

The condition treats the conditions inside like a switch statement in programming, it will go down the list and select when is true, and if none are true, it will default to the default conditon.

You can select any type as a condition, and select one of STRING, NUMBER, BOOLEAN, OBJECT, ARRAY condition types.

If the value or variable you entered into that condition is not that type, it will be converted to the selected to and then do the comparison.

Primitive Types

  • STRING
  • NUMBER
  • BOOLEAN
  • OBJECT
  • ARRAY

Operators

  • == (equals)
  • != (not equal)
  • > (greater than)
  • < (less than)
  • >= (greater than equal to)
  • <= (less than equal to)
  • ⊃ (contains)
  • ⊄ (does not contain)