🔁 Loops Exercises

0/6
0 of 3 exercises0/6
Exercise 1 of 3
easy
🤔
💨

Need a hint? Click the hint button below!

Count the Iterations

How many times will "Hello" be logged?

After running this code:

1for (let i = 0; i < 3; i++) {
2 console.log("Hello");
3}

What will the array look like?