In today's JavaScript lesson we look at, "Codecademy's Learn JavaScript, Loops Section Review Loops, Important Loop Summary, Learn JS 2022 ES6". This is a Review of what we have learned about in the Codecademy's Learn JavaScript Loop Section. We go over the different loops we covered such as the for loop, the while loop, and do while statements. We learn nesting loops within other loops and we learn break statements and when it is best to use them. We learn more about when to use one loop rather than an other. A for loop is great when you know how many times the loop should repeat. Do while loops are great when you want a block of code to execute once everytime then check a condition anytime after. Throwing in an if statement within our loop can allow us to break out of a loop when a certain condition is met! There are many uses for specific loops and it is vital to master using loops as a programmer. Handling large data structures and understanding loops is a powerful toolset for any aspiring programmer to have!