Optional chaining in JavaScript
Optional chaining in JavaScript
Note: This is a recent addition to the language. Old browsers may need polyfills.
The optional chaining ?. is an error-proof way to access nested object properties, even if an intermediate property doesn’t exist.
For example, some of our users have addresses, but few did not provide them. Then we can’t safely read user.address.street:
let user = {}; // the user happens to be without address
alert(user.address.street); // Error!
Or, in the web development, we’d like to get an information about an element on the page, but it may not exist:
// Error if the result of querySelector(...) is null
let html = document.querySelector('.my-element').innerHTML;
Before ?. appeared in the language, the && operator was used to work around that.
For example:
let user = {}; // user has no address
alert( user && user.address && user.address.street ); // undefined (no error)
applying AND in the whole path to the property ensures that all components exist, but is cumbersome to write.
The optional chaining ?. stops the evaluation and returns undefined if the part before ?. is undefined or null.
Here’s the safe way to access user.address.street:
let user = {}; // user has no address
alert( user?.address?.street ); // undefined (no error)
Reading the address with user?.address works even if user object doesn’t exist:
let user = null;
alert( user?.address ); // undefined
alert( user?.address.street ); // undefined
Please note: the ?. syntax makes optional the value before it, but not any further.
In the example above, user?. allows only user to be null/undefined.
On the other hand, if user does exist, then it must have user.address property, otherwise user?.address.street gives an error at the second dot.
Don’t overuse the optional chaining
We should use ?. only where it’s ok that something doesn’t exist.
For example, if according to our coding logic user object must be there, but address is optional, then user.address?.street would be better.
So, if user happens to be undefined due to a mistake, we’ll know about it and fix it. Otherwise, coding errors can be silenced where not appropriate, and become more difficult to debug.
The variable before ?. must be declared
If there’s no variable user at all, then user?.anything triggers an error:
// ReferenceError: user is not defined
user?.address;
There must be let/const/var user. The optional chaining works only for declared variables.
As it was said before, the ?. immediately stops (“short-circuits”) the evaluation if the left part doesn’t exist.
So, if there are any further function calls or side effects, they don’t occur:
let user = null;
let x = 0;
user?.sayHi(x++); // nothing happens
alert(x); // 0, value not incremented
The optional chaining ?. is not an operator, but a special syntax construct, that also works with functions and square brackets.
For example, ?.() is used to call a function that may not exist.
In the code below, some of our users have admin method, and some don’t:
let user1 = {
admin() {
alert("I am admin");
}
}
let user2 = {};
user1.admin?.(); // I am admin
user2.admin?.();
Here, in both lines we first use the dot . to get admin property, because the user object must exist, so it’s safe read from it.
Then ?.() checks the left part: if the admin function exists, then it runs (for user1). Otherwise (for user2) the evaluation stops without errors.
The ?.[] syntax also works, if we’d like to use brackets [] to access properties instead of dot .. Similar to previous cases, it allows to safely read a property from an object that may not exist.
let user1 = {
firstName: "John"
};
let user2 = null; // Imagine, we couldn't authorize the user
let key = "firstName";
alert( user1?.[key] ); // John
alert( user2?.[key] ); // undefined
alert( user1?.[key]?.something?.not?.existing); // undefined
Also, we can use ?. with delete:
delete user?.name; // delete user.name if user exists
