web
[javascript] this
InformationFarm
2020. 5. 6. 17:34
- window 브라우져 객체
- 브라우저의 정보 DOM에 대한 정보를 나타낸다.
1_ this
전역객체를 가르킴 window객체
2_ this
함수안에 this -> 전역을 가르킨다.
3_this
생성자 함수를 가르킨다
4_this 비동기 처리
vue created 함수에서
호줄 전 this => vue conponent
호출 후 this => undefined
그래서 => 화살표함수를 사용하면 binding 할 필요가 없다.