Files
RobinNixon 53063593e3 Final
Final
2020-12-10 13:51:13 +00:00

7 lines
276 B
HTML

<script>
a = 7; b = 11
if (a > b) document.write("a is greater than b<br>")
if (a < b) document.write("a is less than b<br>")
if (a >= b) document.write("a is greater than or equal to b<br>")
if (a <= b) document.write("a is less than or equal to b<br>")
</script>