[Javascript] Window 객체

lilclown·2022년 6월 24일
0

Javascript

목록 보기
26/42
post-thumbnail
post-custom-banner

⬛ Window 객체


◾ Window 객체란?

  • 브라우저의 창을 대변하면서 javascript에서는 최상단에 위치한 객체

  • 전역객체, Global Object


◾ Window 객체 예시

console.log(window); //window 모든 속성
console.log(window.innerWidth); //브라우저의 넓이
console.log(window.innerHeight); //브라우저의 높이

위와 같이 console.logwindow를 입력하거나 window의 속성을 사용하면 아래와 같이 window의 모든 속성을 확인하거나 사용할 수 있다.



Tomorrow better than today, Laugh at myself

- 출처 -

profile
Tomorrow better than today, Laugh at myself
post-custom-banner

0개의 댓글