#typescript
Read more stories on Hashnode
Articles with this tag
Introduction Asynchronous programming is an essential part of modern web development, as it allows us to perform tasks that may take time to complete,...
The keyof operator is used to extract the keys of an object type and use them as a type. The keyof takes an object as input and returns a union type...
TypeScript provides various utility types that make types transformation very easy. We can transform existing types into several other types. These...
TypeScript supports generic classes and functions just like other programming languages Java and c#. We use generics for writing reusable and flexible...
Introduction: A good coding practice is to write reusable, flexible and scaleable code. In TypeScript, a generic is a way to define a type or function...
Introduction This article will teach us how to write types that describe functions. As we know functions are essential building blocks of an...