Teacher Mode Preview
Back to playgroundGuided coding lesson demo
Walkthrough previewLesson starts
main.jsPreview
1
const output = document.getElementById("output");2
let row = 1;3
let text = "";4
5
while (row <= 3) {6
text += `Row ${row}: `;7
let col = 1;8
9
while (col <= 4) {10
text += `[${row},${col}] `;11
col++;12
}13
14
text += "\n";15
row++;16
}17
18
output.textContent = text;Nested while loop in JavaScript
Output appears as the lesson runs.
Teacher caption
The teacher starts with the output area and explains the goal before typing loop code.