this 어떤 특정 객체를 가리키는 값자바스크립트는 동적으로 결정(함수가 호출되는 시점)this 바인딩 규칙기본 바인딩 (Default Binding)일반 함수 호출에서 this는 전역 객체엄격 모드에서는 undefinedfunction showThis() { console.log(this);}showThis(); // 브라우저 환경에서는 window 객체 출력// strict 모드에서는 undefined 암묵적 바인딩 (Implicit Binding)객체의 메소드 호출에서 this는 해당 객체const person = { name: 'Alice', greet() { console.log(`Hello, my name is ${this.name}`); }};person.greet(); // A..