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: Omit
= { name: 'Bob' // `Omit` has removed age and location from the type and they can't be defined here }; console.log(bob);
{ name: 'Bob' }