this 문
업데이트: 2007년 11월
현재 개체를 참조합니다.
this.property
인수
- property
필수적 요소. 현재 개체 속성의 식별자입니다.
설명
this 키워드는 보통 개체 생성자에서 현재 개체를 참조할 때 사용합니다.
예제
다음 예제에서 this는 새로 만든 Car 개체를 참조하고 세 가지 속성에 값을 할당합니다.
function Car(color, make, model){
this.color = color;
this.make = make;
this.model = model;
}
JScript 클라이언트 버전의 경우 this는 다른 개체의 컨텍스트 외부에서 사용하면 window 개체를 참조합니다.