Created
November 29, 2021 11:31
-
-
Save charlypoly/95091d5642f25d871d0743c99e790833 to your computer and use it in GitHub Desktop.
TypeScript optional property (2)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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