Hits

19장에서 살펴보았듯, 객체는 상태를 나타내는 프로퍼티와 동작을 나타내는 메서드를 하나의 논리적인 단위로 묶은 복합적인 자료구조다.

동작을 나타내는 메서드는 자신이 속한 객체의 상태(프로퍼티)를 참조하고 변경할 수 있어야 한다.
이때, 자신이 속한 객체의 상태를 참조하려면 먼저, 자신이 속한 객체를 가리키는 식별자를 참조할 수 있어야 한다.

생성자 함수 내부에서는 프로퍼티 또는 메서드를 추가하기 위해, 자신이 생성할 인스턴스를 참조할 수 있어야 한다.
하지만, 생성자 함수를 정의하는 시점에는 아직 인스턴스를 생성하기 이전이므로 생성자 함수가 생성할 인스턴스를 가리키는 식별자를 알 수 없다.
이를 위해 자바스크립트는 this라는 식별자를 제공한다.

this는 자신이 속한 객체 또는 자신이 생성할 인스턴스를 가리키는 자기 참조 변수다. this를 통해, 자신이 속한 객체 또는 자신이 생성할 인스턴스의 프로퍼티나 메서드를 참조할 수 있다.

this가 가리키는 값 (this 바인딩) 은 함수 호출 방식에 의해 동적으로 결정된다.

1. 객체 리터럴

// 객체 리터럴
const circle = {
  radius: 5,
  getDiameter() {
    // this는 메서드를 호출한 객체를 가리킨다.
    return 2 * this.radius;
  },
};
// 객체 리터럴
const circle = {
  radius: 5,
  getDiameter() {
    // this는 메서드를 호출한 객체를 가리킨다.
    return 2 * this.radius;
  },
};

console.log(circle.getDiameter()); // 10 객체 리터럴의 메서드 내부에서의 this는 메서드를 호출한 객체, 즉 circle을 가리킨다.

여기서 주의할 점, 미리 circle이라는 객체로 결정되어 있는게 아니다! getDiameter 메서드가 호출 될 때 결정된다. (circle이 아닐 수도 있다!)

2. 생성자 함수

// 생성자 함수
function Circle(radius) {
  // this는 생성자 함수가 생성할 인스턴스를 가리킨다.
  this.radius = radius;
}
 
Circle.prototype.getDiameter = function () {
  // this는 생성자 함수가 생성할 인스턴스를 가리킨다.
  return 2 * this.radius;
};
 
// 인스턴스 생성
const circle = new Circle(5);
console.log(circle.getDiameter()); // 10
// 생성자 함수
function Circle(radius) {
  // this는 생성자 함수가 생성할 인스턴스를 가리킨다.
  this.radius = radius;
}
 
Circle.prototype.getDiameter = function () {
  // this는 생성자 함수가 생성할 인스턴스를 가리킨다.
  return 2 * this.radius;
};
 
// 인스턴스 생성
const circle = new Circle(5);
console.log(circle.getDiameter()); // 10

생성자 함수 내부에서의 this는 생성자 함수가 생성할 인스턴스를 가리킨다.


🌟 함수 호출 방식과 this 바인딩

this 바인딩은 함수 호출 방식, 즉 함수가 어떻게 호출되었는지에 따라 동적으로 결정된다.

1. 일반 함수 호출

기본적으로, this에는 전역 객체가 바인딩된다.

function foo() {
  console.log("foo's this: ", this); // window
  function bar() {
    console.log("bar's this: ", this); // window
  }
  bar();
}
 
foo();
function foo() {
  console.log("foo's this: ", this); // window
  function bar() {
    console.log("bar's this: ", this); // window
  }
  bar();
}
 
foo();

객체를 생성하지 않는 일반 함수에서 this는 의미가 없다.

strict mode 사용시 일반 함수 내부의 this에는 undefined가 바인딩된다.

function foo() {
  "use strict";
  console.log("foo's this: ", this); // undefined
  function bar() {
    console.log("bar's this: ", this); // undefined
  }
  bar();
}
foo();
function foo() {
  "use strict";
  console.log("foo's this: ", this); // undefined
  function bar() {
    console.log("bar's this: ", this); // undefined
  }
  bar();
}
foo();

2. 메서드 호출

메서드 내부의 this에는 메서드를 호출한 객체, 즉 메서드를 호출할 때 메서드 이름 앞의 마침표(.) 연산자 앞에 기술한 객체가 바인딩된다.

const person = {
  name: "Lee",
  getName() {
    // 메서드 내부의 this는 메서드를 호출한 객체에 바인딩된다.
    return this.name;
  },
};
 
// 메서드 getName을 호출한 객체는 person이다.
console.log(person.getName()); // Lee
const person = {
  name: "Lee",
  getName() {
    // 메서드 내부의 this는 메서드를 호출한 객체에 바인딩된다.
    return this.name;
  },
};
 
// 메서드 getName을 호출한 객체는 person이다.
console.log(person.getName()); // Lee

메서드는 프로퍼티에 바인딩된 함수이다.
person 객체의 getName 프로퍼티가 가리키는 함수 객체는 person 객체에 포함된 것이 아니라, 독립적으로 존재하는 별도의 객체다.

getName 프로퍼티가 함수를 가리키고 있을 뿐이다.

따라서, getName 프로퍼티가 가리키는 함수 객체, getName 메서드는 다른 객체의 프로퍼티에 할당하는 것으로 다른 객체의 메서드가 될 수도 있고, 일반 변수에 할당하여 일반 함수로 호출될 수도 있다.

const person = {
  name: "Lee",
  getName() {
    return this.name;
  },
};
 
const anotherPerson = {
  name: "Kim",
};
 
anotherPerson.getName = person.getName;
 
console.log(anotherPerson.getName()); // Kim
 
const getName = person.getName;
 
console.log(getName()); // ''
const person = {
  name: "Lee",
  getName() {
    return this.name;
  },
};
 
const anotherPerson = {
  name: "Kim",
};
 
anotherPerson.getName = person.getName;
 
console.log(anotherPerson.getName()); // Kim
 
const getName = person.getName;
 
console.log(getName()); // ''

즉, this는 호출 때 함수, 메서드 호출 때 결정된다!

3. 생성자 함수 호출

생성자 함수 내부의 this에는 생성자 함수가 (미래에) 생성할 인스턴스가 바인딩 된다.

// 생성자 함수
function Circle(radius) {
  // 생성자 함수 내부의 this는 생성자 함수가 생성할 인스턴스를 가리킨다.
  this.radius = radius;
  this.getDiameter = function () {
    return 2 * this.radius;
  };
}
 
// 반지름이 5인 Circle 객체를 생성
const circle1 = new Circle(5);
// 반지름이 10인 Circle 객체를 생성
const circle2 = new Circle(10);
 
console.log(circle1.getDiameter()); // 10
console.log(circle2.getDiameter()); // 20
// 생성자 함수
function Circle(radius) {
  // 생성자 함수 내부의 this는 생성자 함수가 생성할 인스턴스를 가리킨다.
  this.radius = radius;
  this.getDiameter = function () {
    return 2 * this.radius;
  };
}
 
// 반지름이 5인 Circle 객체를 생성
const circle1 = new Circle(5);
// 반지름이 10인 Circle 객체를 생성
const circle2 = new Circle(10);
 
console.log(circle1.getDiameter()); // 10
console.log(circle2.getDiameter()); // 20

4. 화살표 함수

function으로 선언한 함수는 메소드로 호출 되냐, 함수 자체로 호출 되냐에 따라 동적으로 this가 바인딩 되지만,

화살표 함수는 선언될 시점에서의 상위 스코프의 this가 this로 바인딩된다.

const obj = {
  name: "by",
  sayName: () => {
    console.log(this.name);
  },
};
 
obj.sayName(); // ""
const obj = {
  name: "by",
  sayName: () => {
    console.log(this.name);
  },
};
 
obj.sayName(); // ""

sayName 프로퍼티에 매핑된 화살표 함수의 상위 스코프는 전역 스코프이다.
따라서, 매핑된 this는 전역 객체(window, global) 이다.

const obj = {
  name: "by",
  sayName() {
    const test = () => {
      console.log(this.name);
    };
    test();
  },
};
 
obj.sayName(); //by
const obj = {
  name: "by",
  sayName() {
    const test = () => {
      console.log(this.name);
    };
    test();
  },
};
 
obj.sayName(); //by

test에 할당된 화살표 함수의 상위 스코프는 sayName 메서드이다.
sayName 메서드의 this는 호출한 객체에 매핑된다.

const obj = {
  name: "by",
  sayName: () => {
    const test = () => {
      console.log(this.name);
    };
    test();
  },
};
obj.sayName(); // ""
const obj = {
  name: "by",
  sayName: () => {
    const test = () => {
      console.log(this.name);
    };
    test();
  },
};
obj.sayName(); // ""

test에 매핑된 화살표 함수의 상위 스코프는 sayName에 매핑된 화살표 함수이다.
따라서, test에 매핑된 this는 sayName에 매핑된 this이고, 이는 전역 객체이다.

5. Function.prototype.apply/call/bind 메서드에 의한 간접 호출

apply, call, bind 메서드는 Function.prototype의 메서드다. 즉, 이들 메서드는 모든 함수가 상속받아 사용할 수 있다.
apply와 call 메서드의 본질적인 기능은 함수를 호출하는 것이다.
apply와 call 메서드는 함수를 호출하면서 첫 번째 인수로 전달한 특정 객체를 호출한 함수의 this에 바인딩한다.

function getThisBinding() {
  return this;
}
 
// this로 사용할 객체
const thisArg = { a: 1 };
 
console.log(getThisBinding()); // window
 
// getThisBinding 함수를 호출하면서 인수로 전달한 객체를 getThisBinding 함수의 this에 바인딩한다.
console.log(getThisBinding.apply(thisArg)); // {a: 1}
console.log(getThisBinding.call(thisArg)); // {a: 1}
function getThisBinding() {
  return this;
}
 
// this로 사용할 객체
const thisArg = { a: 1 };
 
console.log(getThisBinding()); // window
 
// getThisBinding 함수를 호출하면서 인수로 전달한 객체를 getThisBinding 함수의 this에 바인딩한다.
console.log(getThisBinding.apply(thisArg)); // {a: 1}
console.log(getThisBinding.call(thisArg)); // {a: 1}

apply 메서드는 호출할 함수의 인수를 배열로 묶어 전달하고, call 메서드는 호출할 함수의 인수를 쉼표로 구분한 리스트 형식으로 전달한다.
전달하는 방식만 다를 뿐 this로 사용할 객체를 전달하면서 함수를 호출하는 것은 동일하다.

function getThisBinding() {
  console.log(arguments);
  return this;
}
 
// this로 사용할 객체
const thisArg = { a: 1 };
 
// getThisBinding 함수를 호출하면서 인수로 전달한 객체를 getThisBinding 함수의 this에 바인딩한다.
// apply 메서드는 호출할 함수의 인수를 배열로 묶어 전달한다.
console.log(getThisBinding.apply(thisArg, [1, 2, 3]));
// Arguments(3) [1, 2, 3, callee: ƒ, Symbol(Symbol.iterator): ƒ]
// {a: 1}
 
// call 메서드는 호출할 함수의 인수를 쉼표로 구분한 리스트 형식으로 전달한다.
console.log(getThisBinding.call(thisArg, 1, 2, 3));
// Arguments(3) [1, 2, 3, callee: ƒ, Symbol(Symbol.iterator): ƒ]
// {a: 1}
function getThisBinding() {
  console.log(arguments);
  return this;
}
 
// this로 사용할 객체
const thisArg = { a: 1 };
 
// getThisBinding 함수를 호출하면서 인수로 전달한 객체를 getThisBinding 함수의 this에 바인딩한다.
// apply 메서드는 호출할 함수의 인수를 배열로 묶어 전달한다.
console.log(getThisBinding.apply(thisArg, [1, 2, 3]));
// Arguments(3) [1, 2, 3, callee: ƒ, Symbol(Symbol.iterator): ƒ]
// {a: 1}
 
// call 메서드는 호출할 함수의 인수를 쉼표로 구분한 리스트 형식으로 전달한다.
console.log(getThisBinding.call(thisArg, 1, 2, 3));
// Arguments(3) [1, 2, 3, callee: ƒ, Symbol(Symbol.iterator): ƒ]
// {a: 1}

bind 메서드 역시 첫 번째 인수로 전달한 값으로 this 바인딩이 교체된 함수를 새롭게 생성해 반환한다.

const person = {
  name: 'Lee',
  foo(callback) {
    // bind 메서드로 callback 함수 내부의 this 바인딩을 전달setTimeout(callback.bind(this), 100);
  }
};
 
person.foo(function () {
  console.log(`Hi! my name is ${this.name}.`); // Hi! my name is Lee.
});```
const person = {
  name: 'Lee',
  foo(callback) {
    // bind 메서드로 callback 함수 내부의 this 바인딩을 전달setTimeout(callback.bind(this), 100);
  }
};
 
person.foo(function () {
  console.log(`Hi! my name is ${this.name}.`); // Hi! my name is Lee.
});```