Untitled

Anonymous
plain_text
12/26/2024 3:29 PM
204 B
15
Indexable
unction identity<T>(arg: T): T {
    return arg;
}

const result = identity<string>("Hello, Generics!");
console.log(result); // Output: Hello, Generics!
Editor is loading...
Leave a Comment