230125 개발일지
·
개발일지
오늘의 개발일지는 간단하다. this 콜백함수 이 두개만 조금이라도 이해하면 되는 날이라고 생각이 든다. this 콜백함수에 관한 기본 개념은 최대한 정리를 해서 따로 블로그 해놨으니 여기서는 주저리주저리를 해볼 생각이다. 일단 아래 코드를 적어 보겠다. var o11 = { logThis:function(){ console.log(this) }, logThisLater1:function(){ setTimeout(this.logThis,500) }, logThisLater2:function(){ setTimeout(this.logThis.bind(this),500) } } o11.logThisLater1(); o11.logThisLater2(); 여기서 대충은 감이 잡힌거 같다. logThisLater1..