Untitled

 avatar
unknown
plain_text
a month ago
153 B
2
Indexable
unction identity<T>(arg: T): T {
    return arg;
}

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