Exercise:
Inside the <script> element; change
num1
to
0
and
num2
to
10
and run the code.
Edit This Code:
See Result »
<!DOCTYPE html> <html> <body> <p id="demo"></p> <script> var i = num1; while (i < num2) { 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 = 0; while (i < 10) { document.getElementById("demo").innerHTML += i + "<br>"; i++; } </script> </body> </html>
Correct Result:
Hide Answer
Privacy Policy