User Tools

Site Tools


conditional_expression

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
conditional_expression [2020/02/06 12:11] justinconditional_expression [2020/02/14 12:30] justin
Line 2: Line 2:
 ---- ----
  
-A **conditional expression** is an expression that evaluates to either true or false. An operator at the middle of the expression (for example "==" to check equality) is used to compare two different values on each side of the operator (i.e. the left operand and right operand). Refer to the table below for a list of all operators currently supported.+A **conditional expression** is an expression that evaluates to either true or false. An operator at the middle of the expression (for example "==" to check equality) is used to compare two different values on each side of the operator (i.e. the left operand and right operand). The expression can also be a standalone variable or property that was previously assigned a [[Boolean]] value. You can join multiple conditions together using the "and" keyword (all conditions must evaluate to true) or the "or" keyword (at least one of the conditions must evaluate to true). Refer to the table below for a list of all operators currently supported.
  
 ^Operator^Expression evaluates to true when:^ ^Operator^Expression evaluates to true when:^
Line 10: Line 10:
 |< =|Left operand is **less than or equal to** the right operand.| |< =|Left operand is **less than or equal to** the right operand.|
 |>|Left operand is **greater than** the right operand.| |>|Left operand is **greater than** the right operand.|
-|> =|Left operand is **greater than or equal to** the right operand.|+|>=|Left operand is **greater than or equal to** the right operand.|
 |contains|Left operand **contains one or more of** the right operand.| |contains|Left operand **contains one or more of** the right operand.|
 +|contains[x]|Left operand **contains at least x of** the right operand, where x is a number.|
  
 ====Examples:==== ====Examples:====
conditional_expression.txt · Last modified: 2022/12/16 18:25 by justin