자바스크립트의 this는 '호출자', 실행 문맥' 을 가리킵니다. 7개의 예제를 통해서 this를 뽀개보도록 하겠습니다. 예제 1. console.log(this === window); 그냥 this를 호출하면 이는 window 객체가 됩니다. 예제 2. function test1() { console.log(this === window); } test1(); 함수에서도 this를 호출하면 window 객체입니다. 예제 3. function test1() { 'use strict' console.log(this === undefined); } test1(); strict 모드의 함수에서는 this가 undefined 입니다. 예제 4. function test1() { 'use strict' functi..