Exercise:
Display the sum of 10 + 5, using two variables x and y.
Hint
Hint: Use the addition operator (+).
Edit This Code:
See Result »
<!DOCTYPE html> <html> <body> <p id="demo">Display the result here.</p> <script> var x; var y; </script> </body> </html>
Result:
Show Answer
Correct Code:
<!DOCTYPE html> <html> <body> <p id="demo">Display the result here.</p> <script> var x = 10; var y = 5; document.getElementById("demo").innerHTML = x + y; </script> </body> </html>
Correct Result:
Hide Answer
Privacy Policy