Better Programming

Advice for programmers.

Follow publication

Member-only story

TypeScript: A Gentle Introduction to Mapped Types

Jose Granja
Better Programming
Published in
6 min readMay 3, 2021
Code
Photo by Markus Spiske on Unsplash.

Mapped types are by far the best feature in the TypeScript language. They let you create new types base on existing ones and some rules that you define. That does lead to a more readable and declarative code base.

Keeping your code DRY is one of the principles you should follow, and mapped types help you with that. You will find that there is a massive boilerplate reduction. You have to code less as you can reuse more.

Mapped types are a bit of a scary feature to look at first. Especially if there is a knowledge gap. So, before jumping straight into it, we will revisit some key features that are the foundation on which mapped types are built upon.

Hopefully, by reducing the knowledge gap, it will look less overwhelming. When learning new features I think taking baby steps is key to success.

5 Key TypeScript Features To Build Types

1. The keyof operator

keyof is a very important tool. It lets you get all the type properties in a union format. Let’s check the documentation:

“The keyof operator takes an object type and produces a string or numeric literal union of its keys.” — TypeScript docs

Let’s check out an example:

We can see that we have extracted all the Person keys into PersonKeys type.

2. Accessing a TypeScript type/interface variable

It is widely unknown that you can access type properties by using a very familiar JavaScript syntax: square brackets. This will be very important later on.

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Jose Granja
Jose Granja

Written by Jose Granja

Top Writer @Medium | 1M+ Views | Lead FE @Lingoda | I write weekly about web-development topics 📰 Support me at https://dioxmio.medium.com/membership 🙇

Responses (1)

Write a response