Object destructuring with types

Did you know this?

Here is something I've been using a lot lately. I'm not sure if it's a good practice or not, but it's been working for me.

Let's say you have an object with a bunch of properties, and you want to destructure it into a few variables which can be done like this:

JS
const { name, age } = human

What if this was in TypeScript? I found myself struggling to type this properly, which really bothered me, and after a while I came up with this:

TS
const { name, age } : { name: string;age: number; } = human

This is a lot more verbose, but it's also a lot more readable. TypeScript is a great tool, but it can make you pull your hair out sometimes. 😒

Too make it even more readable, we can use types or interfaces:

TS
interface Person { name: stringage: number} 

And then use it like this:

TS
const person: Person = human
Avatar of Ismayil Mirzayev with spray paint
August 6, 2023
Views: 46