TypeScript (1) 썸네일형 리스트형 [TypeScript] 화살표 함수(Arrow Function)가 대체 뭔가? 자바스크립트를 한번도 사용 해보지 않은 입장에서 무슨 말인지 잘 모르겠다. this가 어떤 혼란을 야기했길래 그러는 걸까? (필자는 C, C++ 프로그래밍에 대한 지식은 있음을 참고하자.) class Person { name: string; constructor(name: string) { this.name = name; } sayHello() { console.log(`Hello, my name is ${this.name}`); } sayHelloWithTimeout() { setTimeout(function() { console.log(`Hello, my name is ${this.name}`); }, 1000); } sayHelloWithArrowFunctionTimeout() { setTimeou.. 이전 1 다음