Skip to main content

Condition Atl

Condition Definition

The alt operand symbolizes a selection between different behaviors, where only one path is taken at any instance. This conditional logic is represented by the following constructs:

if (condition1) {
  ...
} else if (condition2) {
  ...
} else {
  ...
}

See the example below: