자바스크립트 this에 대해

JS (TIL & Remind)·2022년 2월 16일
1
post-custom-banner

this란?

this는 자신이 속한 객체 또는 자신이 생성할 인스턴스를 가리키는 자기 참조 변수이다.

자바스크립트의 this는 함수를 호출할 때, 함수가 어떻게 호출되었는지에 따라 this에 바인딩할 객체가 동적으로 결정된다.

함수 호출 방식에 따른 this에 바인딩되는 객체

기본

전역객체는 모든 객체의 유일한 최상위 객체를 의미한다. 일반적으로 브라우저에서의 전역객체는 window 이며, 서버(node.js)에서의 전역객체는 global 이다.

// 브라우저
console.log(this); // window

// node.js
console.log(this); // global

전역객체는 전역 스코프를 가지는 전역변수를 프로퍼티로 소유한다.

const globalFn = () => {
	console.log('call globalFn');
}

window.globalFn(); // call globalFn
this.globalFn(); // call globalFn

일반함수 호출

일반함수를 호출하면 this는 전역객체에 바인딩 된다.

// 함수 선언식
function funcDeclaration () {
	console.dir(this);
}
funcDeclaration(); // window

// 함수 표현식
const funcExpressions = () => {
	console.dir(this);
}
funcExpressions(); // window

메서드 호출

메서드를 호출하면 기본적으로 this는 해당 메서드를 가지고있는 객체에 바인딩 된다.

단, 메서드가 화살표 함수로 작성되었을 경우, 화살표 함수의 this는 상위 컨텍스트의 this를 계승받기 때문에 this가 전역객체에 바인딩 된다.

const obj = {
	foo: function() {
		console.log('foo this:', this);
	},
	bar() {
		console.log('bar this:', this);
	},
	baz: () => {
		console.log('baz this:', this);
	},
}

obj.foo(); // obj
obj.bar(); // obj
obj.baz(); // window

내부함수 호출

내부함수는 내부함수가 일반함수, 메소드, 콜백함수 내부 어디에서 선언되었든 상관없이 this가 전역객체에 바인딩 된다.

단, 내부함수의 this가 전역객체를 바인딩하지 않도록 하는 방법이 있다. (아래 코드 참고)

const obj = {
	foo: function() {
		function fooInner() {
			console.log('fooInner this:', this);
		}

		fooInner();
	},

	// that 변수에 bar 메서드의 this를 할당하여 사용함으로써
	// 내부함수의 this가 전역객체를 바인딩하지 않도록 한다.
	bar: function() {
		const that = this;
		function barInner() {
			console.log('barInner this:', that);
		}
	
		barInner();
	},

	// 화살표함수의 this는 상위 컨텍스트의 this를 계승받기 때문에,
  // baz 메서드의 this를 바인딩 한다.
	baz: function() {
		const bazInner = () => {
			console.log('bazInner this:', this);
		}
		
		bazInner();
	}
}

obj.foo(); // window
obj.bar(); // obj
obj.baz(); // obj

콜백함수 호출

콜백함수를 호출하면 제어권을 가지는 함수가 this를 무엇으로 바인딩 할지 결정한다.

const obj = {
	foo: function() {
		setTimeout(() => {
			console.log('foo setTimeout this:', this);
		}, 1000);
	}
}

obj.foo(); // foo setTimeout this: window

생성자함수 호출

생성자 함수의 코드가 실행되기 전에 빈 객체가 생성되는데, 이 후 생성자 함수 내에서 사용되는 this는 이 빈 객체를 바인딩한다.

function Foo(name) {
  // 생성자 함수 코드 실행 전
	this.name = name;
}

const foo = new Foo('Cho');
console.log(foo); // Foo { name: 'Cho' }

apply/call/bind 호출

call은 함수를 호출하며 첫 번째 인자로 전달하는 값에 this를 바인딩 한다.

apply는 함수를 호출하며 첫 번째 인자로 전달하는 값에 this를 바인딩 한다.

인자는 배열 형태로 전달하며, 실제 배열이 전달되는 것이 아니고 배열의 요소들이 전달된다

bind첫 번째 인자로 전달하는 값에 this를 바인딩 하며, 새로운 함수를 반환한다.

function foo(num1, num2) {
	console.log(this.name, num1 + num2);
}

const person = {
	name: 'cho',
};

foo.call(person, 1, 2); // cho, 3
foo.apply(person, [1, 2]); // cho, 3

const newFoo = foo.bind(person);
newFoo(1, 2); // cho, 3

화살표 함수에서의 this

화살표 함수 내의 this는 Lexical this를 바인딩한다. 다시 말해, 화살표 함수가 정의된 스코프에 존재하는 this를 바인딩 한다.

// 전역 스코프에 정의되있으므로, this가 전역 객체를 가리킨다.
const foo = () => {
	console.log(this);
}

foo(); // window

// foo 메서드의 스코프에 정의되있으므로, this가 foo 메서드의 this를 가리킨다.
const obj = {
	foo: function() {
		const fooInner = () => {
			console.log(this);
		}

		fooInner();
	}
};

obj.foo(); // obj
profile
노션에 더욱 깔끔하게 정리되어있습니다. (하단 좌측의 홈 모양 아이콘)
post-custom-banner

1개의 댓글

comment-user-thumbnail
2024년 9월 21일

감사합니다 ~

답글 달기