Exercise:
Make the loop start counting from 5 instead of 0:
Hint
Hint: Change the value of i to 5.
Edit This Code:
See Result »
<!DOCTYPE html> <html> <body> <p id="demo"></p> <script> var i = 0; while (i < 10) { document.getElementById("demo").innerHTML += i + "<br>"; i++; } </script> </body> </html>
Result:
Show Answer
Correct Code:
<!DOCTYPE html> <html> <body> <p id="demo"></p> <script> var i = 5; while (i < 10) { document.getElementById("demo").innerHTML += i + "<br>"; i++; } </script> </body> </html>
Correct Result:
Hide Answer
Privacy Policy