Control Flow

If / Else Logic

Conditions allow your code to make decisions. Think of them as forks in a physical path. If a condition is True, the data takes one path; if False, it takes another.

Test the Logic
if (isTrue) {
  // Result: Path A
} else {
  // Result: Path B
}
Execution Status
WAITING FOR INPUT...
Drag: Orbit | Scroll: Zoom | Click Buttons to Branch