Languages
[Edit]
EN

TypeScript - create generic function

4 points
Created by:
Frida-Timms
667

In this article, we want to show how to create generic function type in TypeScript.

Quick solution:

const print = <T extends unknown> (value: T): void => {
    // ...
};

or:

function print<T extends unknown> (value: T): void {
    // ...
}

 

Practical examples

Example 1:

const print = <T extends unknown> (value: T): void => {
    console.log(value);
};


// Usage example:

print(true);         // true
print(3.14);         // 3.14
print('Hi there!');  // Hi there!

Example 2:

function print<T extends unknown>(value: T): void {
    console.log(value);
}


// Usage example:

print(true);         // true
print(3.14);         // 3.14
print('Hi there!');  // Hi there!

 

Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join