Javascript examples for Math:Quiz
Display the product of 8 * 5, using two variables x and y.
<!DOCTYPE html> <html> <body> <p id="demo"></p> <script> var x = 8;//from w w w. j a v a2 s . co m var y = 5; document.getElementById("demo").innerHTML = x * y; </script> </body> </html>