Please fill in the right keywords to compose a loop | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Please fill in the right keywords to compose a loop

-------{ document.write(i); i++; } while (I < 10);

13th Apr 2017, 9:26 AM
Abdelrahim Ismail
Abdelrahim Ismail - avatar
15 Answers
+ 7
do while
30th Jan 2019, 8:26 AM
Naryan Poudel
Naryan Poudel - avatar
+ 4
@Abd Elrahim Ismail, to you bro!!
13th Apr 2017, 9:41 AM
JRE
JRE - avatar
+ 3
In Js: While loop: while (condition){ //Code } For: for (h=x;h<x;h++){ //Code } Do While: do { //Code } while (condition); Infinite loop: while(0 == 0){} I think those are all in Js
13th Apr 2017, 9:35 AM
JRE
JRE - avatar
+ 1
Thank you 👍
13th Apr 2017, 9:41 AM
Abdelrahim Ismail
Abdelrahim Ismail - avatar
+ 1
do { document.write(i); i++; } while (i < 10);
27th Nov 2018, 2:49 PM
Ganesh Kamble
Ganesh Kamble - avatar
+ 1
i hate life
11th Dec 2018, 1:36 PM
kristina
kristina - avatar
+ 1
@Elisheba see do { document.write(i); i++; } while (i < 10);
29th Jan 2019, 6:20 AM
Hasan Al Fayed
Hasan Al Fayed - avatar
0
Thank you 👍
13th Apr 2017, 9:41 AM
Abdelrahim Ismail
Abdelrahim Ismail - avatar
0
I still don't get it. HELP
13th Jan 2019, 8:09 PM
Elisheba
0
still struggling need help
17th Mar 2020, 10:34 AM
amina birabwa
0
do { document.write(i); i++; } while (i < 10);
27th Jun 2020, 10:07 PM
Faith Mundi
Faith Mundi - avatar
0
do { document.write(i); i++; } while (i < 10);
2nd Jul 2020, 7:29 AM
Rustamjon Kosimov
Rustamjon Kosimov - avatar
0
do { document.write(i); i++; } while (i < 10);
14th Aug 2020, 3:51 PM
Bahodirov Akbarjon
0
do { document.write(i); i++; } while (i < 10);
26th Jul 2021, 11:56 PM
Rajan Raj Uprety
0
do/while
11th Nov 2022, 9:51 AM
Daniela Bulimar
Daniela Bulimar - avatar