+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--; } 

Related questions

0 votes
asked Mar 13, 2021 in PL/SQL by rajeshsharma
+1 vote
asked Jun 23, 2021 in Robotic Process Automation by SakshiSharma
...