<script> var intX=123; f_1(); f_2(); function f_1(){ alert(intX); } function f_2(){ alert(intX); } </script>
运行结果:
123 123