The latest version of ECMAScript introduced three new logical assignment operators: nullish, AND, and OR operators. These are supported from Firefox 79 onwards, Chrome 85 onwards, and naturally there is no IE support but since Edge is now chromium based, it is available there too. They are not available in Node.js quite yet either.
The new logical assignment operators are syntactical additions to write cleaner assignment in JavaScript. They have the same short-circuit behavior as the existing logical operators (+= and -=) and thus some people might love them and some people might not like them. But just like every new feature, we will eventually get used to them.
Let us take a look at the three new logical assignment operators:
expr1 ??= expr2
JavaScriptThe logical nullish operator only assigns the value to expr1 only if it is nullish (null or undefined).
The expression:
x ??= y
JavaScriptmight look to be equivalent to:
x = x ?? y;
JavaScriptBut it is not! There is a subtle difference.
The nullish coalescing operator (??) operates from left to right and short circuits if x is not nullish. So the expression “y” will never be evaluated if x were not null nor undefined. Thus, if y was a function, it would not be invoked at all.
Therefore, this logical assignment operator is equivalent to:
x ?? (x = y);
JavaScriptThus, this behavior is different than mathematical and bitwise assignment operators and is an important distinction to note. This applies to the next two operators as well.
This logical assignment operator only assigns the value if the left-hand expression is falsy. Falsy is different than nullish since falsy can be any of the valeus: false, 0, “”, null, undefined, and NaN and a few more.
The syntax:
x ||= y
JavaScriptis again equivalent to :
x || (x = y)
JavaScriptThis can be useful in cases where we want to keep the existing value if it does not exist, otherwise we want to assign a default to it. For example, we want to set the inner HTML of an element to a default value if there is no data from a search request. Otherwise we want to display the existing list. This way, we avoid unnecessary updates and any side-effects such as parsing, re-rendering, losing focus etc. We can simply use this operator to update our HTML using JavaScript:
document.getElementById('search').innerHTML ||= '<i>No posts found matching this search.</i>'
JavaScriptAs you might have already guessed, this logical assignment operator only assigns the value if the left-hand side is truthy. Thus:
x &&= y
JavaScriptwhose equivalent again would be:
x && (x = y)
JavaScriptAnd that is all you need to know about these operators!
What do you think about these new operators being added to JavaScript? Do you like them/hate them? Let us know in the comments section below!
I recently switched completely to the Brave browser and have set ad blocking to aggressive…
I was preparing a slide deck for a hackathon and decided to put in a…
I have been using npx a lot lately, especially whenever I want to use a…
Manually copy-pasting the output of a terminal command with a mouse/trackpad feels tedious. It is…
While working on a project, I wanted to do an integrity check of a file…
Popovers have been a problem that was typically solved by using a third-party solution. But…