...

/

Using Generics in Function

Using Generics in Function

Learn how to use the generics for functions in TypeScript.

Identity function

It’s a bit more common to see generics used with functions. Let’s consider an identity functionIdentity function is a function that always return the same value we passed it as parameter. that takes a value and returns it. We’re pretty clear at this point that we don’t want to do something like this:

const identity = (x: string): string => {
return x;
};
Identity function
...