First Draft
First Draft of the Example Files
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user