Javascript vs. Typescript Javascript로 function을 쓰는 방법이 3가지 있지만 (Function Declaration, Function Expression, Arrow Function), 우선 Arrow Function으로 비교를 해보자. Javascript : const subtract (a, b) => { return a - b; } 위와 똑같은 코드를 Typescript으로 (with full annotations) 작성하자면 : const subtract :(a: number, b: number) => number = (a: number, b: number): number => { return a - b; } 엄청 복잡하다. 새로운 코드가 두 줄은 더 생긴 듯 보..
2023. 7. 21. 15:50 / Tech김백엔드