
How to Use Optional Chaining in JavaScript
Optional chaining is coming to JavaScript. It lets you access deeply nested properties without having to explicitly check each object for its existence.
Instead of getting the famous βcannot read property of undefined
β error message, the expression short circuits with undefined.
To use it, simply mark optional properties with a question mark:
// If `dateOfBirth` is undefined, `birthYear` will be undefined as well
const birthYear = user.dateOfBirth?.year;
Copied to clipboard!
For full browser support, make sure you check the compatibility table on MDN.
Looking to improve your skills? Check out our interactive course to master JavaScript from start to finish.

Do You Need a Fallback Option?
If you rather want to use a more compatible version, you can achieve the same thing using a reduce
function.
const getProperty = (obj, path) => (path.split('.').reduce((value, el) => value[el], obj));
const user = {
settings: {
theme: 'default'
}
};
getProperty(user, 'settings.theme'); // This will return βdefaultβ
getProperty(user, 'settings.invalidPath'); // This will return `undefined`
Copied to clipboard!

Resource
π More Webtips
Master the Art of Frontend
Unlimited access to hundred of tutorials
Access to exclusive interactive lessons
Remove ads to learn without distractions