日本語
Appearance
入力された値を変更せずに返します。
function identity<T>(x: T): T;
x
T
(T): 入力値。
// Returns 5 identity(5); // Returns 'hello' identity('hello'); // Returns { key: 'value' } identity({ key: 'value' });