Common Mistakes
This lesson discusses some of the common mistakes that programmers make while using loops in their code.
We'll cover the following...
Infinite while loop
The main risk with while loops is producing an infinite loop, meaning the condition is always true, and the code runs ...
Ask