Skip to content
Archive
Main Navigation
Posts
Articles
Dev
Studies
Architecture
Patterns
Browser
Clean Code
Frontend
Git
HTTP
Javascript
Node
React
Security
Typescript
Vue3
Web 용어정리
Books
Composing Software
코어 자바스크립트
TCP/IP 완벽 가이드
Node.js 교과서(개정 3판)
코딩테스트
GitHub
Appearance
GitHub
Menu
Return to top
On this page
Table of Contents for current page
상황에 따라 달라지는 this
#
global context → 전역객체
메서드 내부 → 메서드를 포함한 객체
독립적인 함수 내부 → 전역객체(JS 설계오류)
ES6 arrow function 내부 → scope chain 상 가장 가까운 context의 thisBinding
콜백함수 내부 → 제어권을 가진 함수가 지정해주는 객체(default: 전역객체)
constructor 내부 → 생성된 인스턴스