Exercise:
Display the result of 10 / 5, using two variables x and y.
Hint
Hint: Use the division 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