[daily study] BOM_전역객체 window

4988 단어 JavaScriptJavaScript

*본 글은 생활코딩 강의를 듣고 복습하기 위해 작성되었습니다.



🌹 window 객체

 window 객체는 모든 객체가 소속된 전역객체이다.

window 객체는 식별자 window를 통해서 얻을 수 있고 생략가능하다.

아래는 window객체의 메소드인 alert을 호출하는 방법이다.

<html>
  <head>
  </head>
 	<script>
     	 alert('hello world');
         window.alert('hello world');
         <!--위의 두코드는 동일한 결과를 출력한다.-->
 	</script>
  <body>
  </body>
</html>

아래는 전역변수 a에 접근하는 방법이다.

<html>
  <head>
  </head>
 	<script>
     	 var a = 1;
         
         alert(a);
         alert(window.a);
         <!--위의 두코드는 동일한 결과를 출력한다.-->
 	</script>
  <body>
  </body>
</html>

🧡💛Point💚💙💜

객체를 만든다는 것은 결국 window객체의 프로퍼티를 만드는 것과 같다.


➕ 마지막으로 console창에서 이해하기






출처 : https://opentutorials.org/course/1375/6633
*위 글의 이론적인 내용은 생활코딩의 전역객체window에서 가져왔음을 밝힙니다.

좋은 웹페이지 즐겨찾기