The Do-While Loop
Learn about the do-while loop, which is another way to repeat a code segment.
We'll cover the following...
We'll cover the following...
The do-while loop executes the loop body at least once and checks the condition before the end.
Notice the first line in the function. We have to exit the sumArray function before reaching the do-while ...