Well done!
You have completed Review while, do...while, and Loop Conditions!
Quiz Question 1 of 6
Which of the following is an example of an infinite loop?
Choose the correct answer below:
-
A
let counter = 0; while ( counter >= 0 ) { console.log(`The counter is: ${counter}.`) counter += 1; }
-
B
let counter = 0; while ( counter > 10 ) { console.log(`The counter is: ${counter}.`) counter += 1; }
-
C
let counter = 0; while ( counter < 10 ) { console.log(`The counter is: ${counter}.`) counter += 1; }
-
D
let counter = 0; while ( counter < 0 ) { console.log(`The counter is: ${counter}.`) counter += 1; }