Generic Programming Type Annotation이 없으면 자동으로 Type Parameter로 동작 let echo = a => { a }아래와 같이 작동 function echo<T>(a: T) { return a; }