Generics, Any 와 차이점 function helloString(message: string): string { return message; } function helloNumber(message: number): number { return message; } // 더 많은 반복된 함수들 function hello(message: any): any { return message; } console.log(hello("soo").length); console.log(hello(31).length); function helloGeneric(message: T): T { return message; } Generics Basic function helloBasic(message: T, comment..