[자바스크립트] this 객체의 정체
this 1. this 란?this는 일반적으로 메소드를 호출한 객체가 저장되어 있는 속성입니다. function MyClass () { this.property1 = "value1"; } MyClass.prototype.method1 = function() { console.log(this.property1); } var my1 = new MyClass(); my1.method1(); - 코드 1 - 메소드를 호출한 객체는 my1이 되며 method1은 메소드가 됩니다. method1()이 실행되면 메소드 내부에는 자바스크립트 엔진에 의해 this 속성이 생기게 됩니다. 바로 이 this에는 mthod1을 호출한 my1 객체가 저장됩니다. 결론을 먼저 말씀 드리자면, this가 만들어지는 경우,1. 일..
JavaScript
2016. 12. 20. 00:15
공지사항
최근에 올라온 글