Javascript examples for Math:Quiz
Divide integer x by 3.
ResultView the demo in separate window
<!DOCTYPE html> <html> <body> <p id="demo"></p> <script> var x = 50;// ww w. jav a 2 s . c om document.getElementById("demo").innerHTML = x / 3; </script> </body> </html>