Run ❯
Get your
own Node
server
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
interface Person { name: string; age: number; location?: string; } const bob: Pick
= { name: 'Bob' // `Pick` has only kept name, so age and location were removed from the type and they can't be defined here }; console.log(bob);
{ name: 'Bob' }