한국어
Appearance
입력값을 변경하지 않고 반환합니다.
function identity<T>(x: T): T;
x
T
(T): 입력된 값.
// Returns 5 identity(5); // Returns 'hello' identity('hello'); // Returns { key: 'value' } identity({ key: 'value' });