자바스크립트에서 this는 호출한 객체를 가리키는 키워드이다.호출한 객체가 명시되어있지 않을 때에는 기본 값으로 this는 window 객체를 가리킨다. let person = { name : 'cho', age : 20, printPerson: function () { console.log(this); console.log(this === person); console.log(this.age); }};위와 같이 person 객체를 선언한 뒤, 함수를 호출하는 방식에 따라 this의 값은 달라진다. person.printPerson(); //person 에 의해 호출-----------------------------------------------------..