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("Mark").length); console.log(hello(39).length); //숫자에 length를 사용못하는데 사용이됨 function helloGeneric(message: T): T{ return message; } console.log(helloGeneric('M..