Skip to content

Instantly share code, notes, and snippets.

@viniciusdacal
Last active February 7, 2018 16:20
Show Gist options
  • Save viniciusdacal/50555447e051439f871493e530287d0c to your computer and use it in GitHub Desktop.
Save viniciusdacal/50555447e051439f871493e530287d0c to your computer and use it in GitHub Desktop.
const user = {
name: 'John',
surname: 'Doe',
address: null,
};
const userName = user && user.name // John
const address = user && user.address // null
const zipCode = user && user.address && user.address.zipcode // null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment