Display the result of 50 / 5, using two variables x and y. - Javascript Operator

Javascript examples for Operator:Quiz

Description

Display the result of 50 / 5, using two variables x and y.

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<p id="demo"></p>

<script>
var x = 50;/* ww  w . ja  v a2 s. co m*/
var y = 5;
document.getElementById("demo").innerHTML = x / y;
</script>

</body>
</html>

Related Tutorials