53063593e3
Final
17 lines
334 B
JavaScript
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>
|
|
|