Common Mistakes

This lesson discusses some of the common mistakes that programmers make while using loops in their code.

Infinite while loop

The main risk with while loops is producing an infinite loop, meaning the condition is always true, and the code runs ...