Skip to content

Instantly share code, notes, and snippets.

@silent1mezzo
Created May 22, 2020 13:08
Show Gist options
  • Save silent1mezzo/f7d892aa9bca95c06db3dbfe9fdc4175 to your computer and use it in GitHub Desktop.
Save silent1mezzo/f7d892aa9bca95c06db3dbfe9fdc4175 to your computer and use it in GitHub Desktop.
const adventurer = {
name: 'Alice',
cat: {
name: 'Dinah'
}
};
// Before Optional Chaining
if(adventurer && adventurer.cat){
console.log(adventurer.cat.name);
//'Dinah'
}
// After Optional Chaining
console.log(adventurer.cat?.name);
//'Dinah'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment