질문&답변
this 바인딩 질문드립니다~
인자로 전달 되는 함수에 this를 myObj 객체로 바인딩하면 하면 되지 않을까요? 예를들어 const callbackFunc = function() { console.log(this.data) }.bind(myObj); myObj.runFunc(callbackFunc); 또는 myObj.runFunc(function() { console.log(this.data) }.bind(myObj));