Skip to content

Instantly share code, notes, and snippets.

@manakuro
Created March 31, 2020 06:40
Show Gist options
  • Save manakuro/23082b8b73a629838e520452c15b399d to your computer and use it in GitHub Desktop.
Save manakuro/23082b8b73a629838e520452c15b399d to your computer and use it in GitHub Desktop.
if (user && user.addressInfo) {
let zipcode
if (user.addressInfo.zipcode) {
zipcode = user.addressInfo.zipcode
} else {
zipcode = ''
}
// do something
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment