+ 1

Hello why my the the while loop not working

Var i=0; While(I<=10){ document.write( i+<br />); i++; }

6th Aug 2022, 9:57 PM
Ayomikun Ogungbe
Ayomikun Ogungbe - avatar
1 Answer
+ 3
// small letters var while let i=0; while(i<=10){ document.write(i+'<br />'); // or (`${i}<br />`); i++; }
6th Aug 2022, 10:33 PM
SoloProg
SoloProg - avatar