Accessing a long chain of properties can be risky since one or more properties could be undefined or null. To be safe, we can use optional chaining when accessing long chain of properties.
Instructor: [0:00] Optional chaining can be used to chain properties that maybe now are undefined. It is especially useful for accessing a long chain of properties. like here.
[0:13] Consider this example, there are long chains being accessed, and there are multiple points of failure in the statement. Any of the properties in this long chain could be null or undefined. Then, we try to access them. JavaScript then throw an error.
[0:31] To fix this, we can use optional chaining while accessing properties, and now JavaScript returns undefined if any one of these properties is null or undefined.
Member comments are a way for members to communicate, interact, and ask questions about a lesson.
The instructor or someone from the community might respond to your question Here are a few basic guidelines to commenting on egghead.io
Be on-Topic
Comments are for discussing a lesson. If you're having a general issue with the website functionality, please contact us at support@egghead.io.
Avoid meta-discussion
Code Problems?
Should be accompanied by code! Codesandbox or Stackblitz provide a way to share code and discuss it in context
Details and Context
Vague question? Vague answer. Any details and context you can provide will lure more interesting answers!