- 전역에서의 this
1) browser의 this는 window
2) nodeJS의 this는 빈 Object
- 함수에서의 this
1) browser의 this는 window
2) nodeJS의 this는 global object
3) strict모드 undefined
- 메소드에서의 this
1) browser의 this는 window
2) nodeJS의 this는 global object
3) strict모드 undefined
4) 기본적으로 this는 자기 자신의 객체를 반환한 값
'개발 > FrontEnd Interview' 카테고리의 다른 글
!important 를 지양해야 하는 이유 (1) | 2021.04.03 |
---|---|
attribute vs property (0) | 2021.04.03 |
undefined, null, NaN (0) | 2021.04.03 |
Window객체와 BOM (0) | 2021.04.03 |
실행 컨텍스트란? (2) | 2021.04.02 |