Run ❯
Get your
own Node
server
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
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' }