less than 1 minute read

기본적으로 this는 window 객체를 가리킴

객체.메서드()를 해야 객체에서 this가 객체 자신을 가리킨다

객체 안의 this는 객체 자신을 가리킴(화살표 함수가 아닌 )

화살표 함수에서의 this는 다르게 쓰인다

화살표 함수에서의 this는 window가 됨

window는 브라우저 전체를 총괄하는 객체로 생략가능

document랑 console.log도 window안에 있어서

window.document / window.console.log 이지만 보통 생략하고 사용

Updated: