Coming soon to JavaScript: Optional Chaining Operator
This example is inspired by mpjme's Fun Fun Function Video Watch that! It's short fun and explained really well!
This gist, is for me and my colleagues as a reference.
Given: Optional properties in an object
const hero1 = { name: 'Superman', address: { city: 'Metropolis', zip: 12345 } }