I Am
Volodymyr Hudyma
<FrontEndDeveloper />
Table Of Contents(Articles: 145)
1

Type Guards In TypeScript

August 30, 2021
#TypeScript

If you work with Typescript of a regular basis, you know that it provides developers with a large feature list that is frequently updated with new stuff. One of the things from that list that you may have been using for years without realizing it are Type Guards...Read more

2

13 Most Used Utility Types In TypeScript

May 31, 2021
#TypeScript

TypeScript is very flexible, and in addition to the ability to create new types, it also offers the ability to transform existing types. Such transformations are usually done with Utility Types, which are built-in and globally accessible...Read more

3

Intrinsic String Manipulation Types In TypeScript

May 04, 2021
#TypeScript

In TypeScript 4.1, apart from a bunch of cool additions, there are four new types that help us better handle various string manipulations. The most common manipulations are: converting the string to uppercase or lowercase, capitalizing and...Read more

4

Exclamation Mark In TypeScript

April 04, 2021
#TypeScript

If you are using TypeScript, you might have noticed an Exclamation Mark (!) operator that does some kind of magic and makes your compiler ignore possible errors. Let's learn what the purpose of this operator is and how it can be a useful addition to...Read more

5

TypeScript - Unknown vs. Any. What Is The Difference?

August 11, 2020
#TypeScript

In TypeScript, there are 2 top types: any and unknown, that are both very similar, but unknown is much less permissive and type-safe counterpart of any...Read more

6

A Simple Guide To Generics In TypeScript

July 20, 2020
#TypeScript

One of the main tools in the toolbox for producing reusable code is generic types. They allow the code to be used with a variety of types rather than a single one...Read more

7

Typescript "Type" vs, "Interface". What Is The Difference?

June 16, 2020
#TypeScript

One of the most asked interview questions for JavaScript developers is: "What's the difference between type and interface in TypeScript?". Even if you used both of them, the answer might not be obvious...Read more

Newsletter
Receive all new posts directly to your e-mail
No spam, only quality content twice a week