Skip to content

Commit 69f05b5

Browse files
committed
Update images for single and multiple conditions
1 parent 86cba66 commit 69f05b5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/resources/control-flow/functions/control-flow-actions/conditional-logic.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ Conditional logic is a fundamental concept in programming and software developme
1515
Conditional flows enhance basic true-false logic by handling multiple conditions and executing specific actions based on those conditions. This is achieved through more complex flows, such as single conditions, multiple conditions (using AND/OR), and conditional values with If/Then/Else logic.
1616

1717
### Single Condition
18-
This flow allows you to define a condition based on the comparison of two values, which can be set manually or derived from variables. The condition will return True or False.
18+
This flow allows you to define a condition based on the comparison of two values, which can be set manually or derived from variables. The condition will return **True** or **False**.
1919

20-
**Comparison Options:**
20+
**Comparison Operators:**
2121

2222
- Equal To
2323
- Not Equal To
@@ -28,12 +28,12 @@ This flow allows you to define a condition based on the comparison of two values
2828
- Is Set
2929
- Is Not Set
3030

31-
Arcade
31+
![single-condition.png](..%2Fimg%2Fsingle-condition.png)
3232

3333
### Multiple Conditions (AND/OR)
3434
This flow lets you combine multiple single conditions using logical AND or OR operators. It is useful for more complex decision-making processes.
3535

36-
Arcade
36+
![multiple-condition.png](..%2Fimg%2Fmultiple-condition.png)
3737

3838
### Conditional Value (If/Then/Else)
3939
Conditional Value allows you to set a dynamic variable based on different conditions. For each condition, you can specify a value that will be assigned if the condition is true. A default value can be provided if none of the conditions are met.
355 KB
Loading
221 KB
Loading

0 commit comments

Comments
 (0)