Exercise:
Use the += operator to add a value of 5 to the variable x.
Edit This Code:
See Result »
<!DOCTYPE html> <html> <body> <p id="demo"></p> <script> var x = 10; // add code here document.getElementById("demo").innerHTML = x; </script> </body> </html>
Result:
Show Answer
Correct Code:
<!DOCTYPE html> <html> <body> <p id="demo"></p> <script> var x = 10; x += 5; document.getElementById("demo").innerHTML = x; </script> </body> </html>
Correct Result:
Hide Answer
Privacy Policy