Generics, Any 차이 타입을 변수로 활용해서 return 되는 타입과 연관시키면 좋다는 아이디어에서 generic의 개념이 나타났다 function helloString(message: string): string { return message; } function helloNumber(message: number): number { return message; } function hello(message: string | number) : string|number { return message; } function helloAny(message: any): any { return message; } console.log(helloAny(123)); console.log(helloAny('one..