You have already completed these exercises!
Do you want to take them again?
You completed the JS While Loops Exercises from W3Schools.com
Share on:
Consider the following code:let i = 15, x = '';do { x += 'The number is ' + i;}while (i < 10);Which one of these statements will be true?
let i = 15, x = '';do { x += 'The number is ' + i;}while (i < 10);
x