Files
lpmj6/14/11.js
T
RobinNixon 0335342e00 First Draft
First Draft of the Example Files
2020-12-10 13:21:38 +00:00

17 lines
334 B
JavaScript

<script>
test()
if (typeof a != 'undefined') document.write('a = "' + a + '"<br />')
if (typeof b != 'undefined') document.write('b = "' + b + '"<br />')
if (typeof c != 'undefined') document.write('c = "' + c + '"<br />')
function test()
{
a = 123
var b = 456
if (a == 123) var c = 789
}
</script>