Divide integer x by 3. - Javascript Math

Javascript examples for Math:Quiz

Description

Divide integer x by 3.

Demo Code

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>

Related Tutorials