const circle = {
	// 프로퍼티 : 객체 고유의 상태 데이터
	radius : 5;
	getDiameter(){
		// 이 메서드가 자신이 속한 객체의 프로퍼티나 다른 메서드를 참조하려면...객체를 가르키는 식별자로 
		// 참조 할 수 있다.
		return 2 * circle.radius;
	}
};

console.log(circle.getDiameter()); // 10

<aside> ♻️ this는 자신이 속한 객체 혹은 자신이 생성할 인스턴스를 가리키는 자기 참조 변수이다.

</aside>

this 바인딩

객체 리터럴과 생성자 함수에서의 this

const circle = {
	radius : 5,
	
	getDiamter(){
		// 메서드를 호출한 객체를 가르킴
		return 2 * this.radius
	}
}

console.log(circle.getDiameter());