Skip to content

Instantly share code, notes, and snippets.

@wendelnascimento
Created April 25, 2018 16:25
Show Gist options
  • Save wendelnascimento/8f4e30ab654f940f79c6629d87febd9e to your computer and use it in GitHub Desktop.
Save wendelnascimento/8f4e30ab654f940f79c6629d87febd9e to your computer and use it in GitHub Desktop.
If chain to check object property
const { person } = this.state;
if (person) {
if (person.infos) {
if (person.infos.location) {
return (
<span>{person.infos.location}</span>
);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment