Skip to main content
✏️ Code CompletionTS TypeScript Medium+20 XP

Generic Function

Complete the generic function.

✏️ Fill in the blank
function identity<___>(arg: T): T {
    return arg;
}

✏️ Type the missing code: