ウェブエンジニア問題集

次の identity 関数について、正しい説明はどれですか? function identity<T>(value: T): T { return value; } const a = identity<string>('hello'); const b = identity(42);