초코레

this 본문

Frontend/JavaScript

this

초코레 2021. 1. 9. 22:51
  • 객체 안에서 사용하는 this는 객체 자신을 가리킨다.
  • 객체의 속성 안에서 다른 속성을 가리킬 때 사용한다.
  • Vue의 함수 안에서 this는 해당 Vue의 data 속성을 가리킨다. console.log()로 Vue 인스턴스를 찍어보면 data 속성 안의 값이 바깥 레벨로 나와있는 걸 확인할 수 있다.
  • The JavaScript this Keyword
  • Understanding the “this” Keyword in JavaScript