Quiz on Repetition with Loops
Test your knowledge of repetition with loops.
We'll cover the following...
1
What is the result when the following program is executed?
for (let a of [9, 2, 5]) {
console.log(a);
}
A)
It shows an error.
B)
925
C)
975
D)
259
Question 1 of 70 attempted
...
Ask