Files
lpmj6/15/05.html
T
RobinNixon 0335342e00 First Draft
First Draft of the Example Files
2020-12-10 13:21:38 +00:00

6 lines
112 B
HTML

<script>
a = 1000
b = "1000"
if (a == b) document.write("1")
if (a === b) document.write("2")
</script>