Exercise:
Create a third variable called
z
, assign x + y to it, and display it.
Hint
Hint: var z = x + y.
Edit This Code:
See Result »
<!DOCTYPE html> <html> <body> <p id="demo">Display the result here.</p> <script> var x = 5; var y = 10; </script> </body> </html>
Result:
Show Answer
Correct Code:
<!DOCTYPE html> <html> <body> <p id="demo">Display the result here.</p> <script> var x = 5; var y = 10; var z = x + y; document.getElementById("demo").innerHTML = z; </script> </body> </html>
Correct Result:
Hide Answer
Privacy Policy