Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save charlypoly/95091d5642f25d871d0743c99e790833 to your computer and use it in GitHub Desktop.
Save charlypoly/95091d5642f25d871d0743c99e790833 to your computer and use it in GitHub Desktop.
TypeScript optional property (2)
interface Person {
name: string
address?: {
city: string
zipcode: string
}
}
const p: Person = { name: "John", address: undefined }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment