Outline

For this exercise, you should:

// 1. do a console.log while num is less than 10
let num = 0;

// 2. while num2 < 5, log your favorite movie title to the console
let num2 = 0

// 3. Use a for loop to loop over some code up to 6 times, but break out on the 4th time through the loop

// 4. Use a for loop to loop over some code up to 6 times, but skip the 4th time through the loop

You can fork this exercise on StackBlitz with this link.

 

I finished! On to the next chapter