Login
Remember
Register
Ask a Question
___________ is a pretest loop that will execute until the value of z equals 10.
+1
vote
asked
Feb 6, 2020
in
JavaScript
by
rajeshsharma
___________ is a pretest loop that will execute until the value of z equals 10.
while (z >10) { z--; }
for (var z= 1; z < 10; z++) { alert (z); }
do { ++z; } while (z < 10);
#java-variables
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Feb 7, 2020
by
SakshiSharma
while (z >10) { z--; }
...