JavaScript Loops Worksheet

Questions

Question 1

What is the difference between a while loop and a for loop?

While Loops will continue forever until something is preformed
For Loops will only continue for a certain amount of time

Question 2

What is an iteration?

It is when the code in the loop is executed

Question 3

What is the meaning of the current element in a loop?

It is so that it keeps track of what the element is when the loop is executed

Question 4

What is a 'counter variable'?

it is to count how many times the loop iterates

Question 5

What does the break; statement do when used inside a loop?

it is so that the loop will stop before completion.

Coding Problems

Coding Problems - See the 'script' tag below this h3 tag. You will have to write some JavaScript code in it.

Always test your work! Check the console log to make sure there are no errors.