º Learning 。/♂ Javascript ♀

지역변수, 전역변수 확인

나른한오후에 2009. 5. 25. 15:58

 <BODY>
  <script
type="text/javascript">
   function hamsu(a, b){
    document.write(a + b);
    var local = "지역변수";
    global = "전역변수";
   }

   hamsu("함수","이벤트 핸들러");
   document.write("<br>");
//   document.write(local);    // function hamsu()안에서 선언된 지역 변수로 외부로 출력이 안됨
   document.write(global);    
  </script>

 </BODY>