Quiz
Test your knowledge about loops in Reason with this quiz!
We'll cover the following...
We'll cover the following...
Technical Quiz
1.
What are values printed by this loop?
for (i in 10 to 16) {
Js.log(i * 2);
};
A.
20
22
24
26
28
30
B.
22
24
26
28
30
32
C.
22
24
26
28
30
D.
20
22
24
26
28
30
32
1 / 3
The following lessons contain coding ...