window 객체는 브라우저에 의해 자동으로 생성되며 웹 브라우저의 창(window)을 나타냅니다.

또한 window 은 브라우저의 객체이지 javascript의 객체가 아닙니다.

window 객체를 이용해서

  1. 브라우저의 창에 대한 정보를 알 수 있고, 이 창을 제어하고 할 수도 있습니다.
  2. 또한 var 키워드로 변수를 선언하거나 함수를 선언하면 이 window 객체의 프로퍼티가 됩니다.

Untitled

window object 사용

// Alert
alert("Hello World");

// Prompt
const input = prompt();
alert(input);

// Confirm
if (confirm("Yes of No")) {
  console.log("YES");
} else {
  console.log("NO");
}
let val;
// Outter height and width
val = window.outerHeight;
val = window.outerWidth;

// Inner height and width
val = window.innerHeight;
val = window.innerWidth;

// Scroll points
val = window.scrollY;
val = window.scrollX;

console.log(val);
// Location Object
val = window.location;
val = window.location.hostname;
val = window.location.port;
val = window.location.href;
val = window.location.search;

// Redirect
window.location.href = "<http://google.com>";
// Reload
window.location.reload();

// History Object
window.history.go(-2);
val = window.history.length;

// Navigator Object
val = window.navigator;
val = window.navigator.userAgent;
val = window.navigator.language;

console.log(val);

var 로 선언해서 window 객체의 프로퍼티로 만들기

var greeting = "hello";

function doGreeting() {
  return greeting;
}

console.log(window.greeting);     // hello
console.log(window.doGreeting()); // hello