Articles in this series
Today I want to start a series of tips and tricks about Typescript. I will try to publish two/three tips & tricks a week. Before start, I want to...
Welcome back! Today I show you the Literal Types. This feature permits you to create a set of relationship values. type Direction = "North" | "South"...
Welcome back! Today I'll talk about the keyof operator. This operator helps us to extract the object's properties such as Literal-types type Person =...
Hi and welcome back! Today I talk about Union and Intersection. In some cases, we have to combine different types to create new types, or sometimes we...
Welcome back, guys! The topic of today is Overloaded Functions. All self-respecting programming languages have overloaded functions, so typescript...
Hello everybody and welcome back, today I'll talk about this parameter. Sometimes we need to create functions that have to know the context to run...