Skip to content

2/26/2025

For Loop: Statement creates a loop with 3 optional expressions.

While Loop: Loops through a block of code as long as a specified condition is true.

Do While Loop: Will execute the code block once, before checking if the condition is true, then it will repeat the loop as long as the condition is true.

Code & Curiosities