Open utterances-bot opened 1 month ago
Overall Review of P4 iteration 3.8.1-3.8.5
3 good things:
Comprehensive coverage: You did a great job explaining loops, especially how you covered while loops, for loops, and even nested loops with examples in both python and javascript—helpful for visual learners.
Concise step-by-step breakdowns: I love how you break everything down step-by-step, like initializing variables, setting conditions, and explaining what happens inside the loop. This makes it a lot easier to follow along, especially for beginners.
Interactive challenges: The popcorn hacks are a nice touch. They have detailed explanations especial the description of what's actually going on inside the loop, such as when the loop is looping through a list until a set condition.
3 bad things:
Typos: There's a couple of small grammar things here and there, like in "while loops are consisted of"—should be "consist of." also, check the spelling on things like "innterCounter."
Incorrect condition: In the popcorn hack for printing "hello" 5 times, the condition while counter < 0
doesn't work since it’ll never be true when starting with 5. should be counter > 0
instead.
Infinite loops: Should throw in a heads-up about infinite loops in case someone forgets to update their condition—could save some headaches for beginners.
Overall, really good job, just a few small tweaks are needed.
Hello, this is the scrum master from Period 2. First off, I love the dropdown menu and the animation you added as well as the color scheme around it. It looks amazing and super cool. I also like how you were super in depth, yet concise with your work. I think 8.2 could use a little work as it looks a little unfinished or unpolished. For example you could go a little further in depth for the instructions for the popcorn hacks, or even add extra challenges to them. Overall though you guys did a splendid job, keep it up!
3.8.1 While loops | Nighthawk Pages
Basic concept for while loops
https://nighthawkcoders.github.io/portfolio_2025/csp/big-idea/p4/3-8-1