함수를 호출할 때 결정된다.

전역 공간의 This

console.log(this);
console.log(window);
console.log(this === window); //true

함수와 this

화살표 함수의 경우..

콜백의 경우