13.4 Programming Activity (20 mins)
Step-by-Step Activity:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Loop Types Activity</title> </head> <body> <h1>Check the Console for Loop Output</h1> <script> // 1. For loop: Print numbers 1 to 10 console.log("For Loop:"); for (let i = 1; i <= 10; i++) { console.log(i); } // 2. While loop: Print numbers 1 to 10 console.log("While Loop:"); let j = 1; while (j <= 10) { console.log(j); j++; } // 3. Do-while loop: Print numbers 1 to 10 console.log("Do-While Loop:"); let k = 1; do { console.log(k); k++; } while (k <= 10); </script> </body> </html>
Activity Follow-up Questions:
Last updated