+1 vote
in JavaScript by
___________ 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);

1 Answer

0 votes
by

while (z >10) { z--; } 

...