Files
lpmj6/14/11.js
T
RobinNixon 53063593e3 Final
Final
2020-12-10 13:51:13 +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>