This example shows how labeled break works in JavaScript. We have two loops: outer and inner. The label 'outer' is placed before the outer loop. Inside the inner loop, we check if i equals 2 and j equals 2. If true, we break the outer loop using 'break outer;'. The execution table traces each step: printing pairs (i,j) until the condition is met. At step 5, the condition is true, so the labeled break exits both loops immediately. The variable tracker shows how i and j change each step. Key moments clarify why the labeled break stops all loops, not just the inner one. The visual quiz tests understanding of variable values and loop control. The concept snapshot summarizes how labeled break and continue work to control loops more flexibly.