Display the difference of 1 - 5, using two variables x and y. - Javascript Operator

Javascript examples for Operator:Quiz

Description

Display the difference of 1 - 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 = 1;/*www  .j av  a 2  s.  co m*/
var y = 5;
document.getElementById("demo").innerHTML = x - y;
</script>

</body>
</html>

Related Tutorials