DEV Community

Cover image for Nullish coalescing operator (??)
Suprabha
Suprabha

Posted on • Updated on

Nullish coalescing operator (??)

The nullish coalescing operator (??) is a logical operator that returns its right-hand side operand when its left-hand side operand is null or undefined, and otherwise returns its left-hand side operand.

Example:

const username = null ?? 'suprabha';
console.log(username);
// suprabha
Enter fullscreen mode Exit fullscreen mode

Contents:

1. Nullish coalescing operator (??)

2. "&&" or "||"

3. Falsy Value

4. No chaining with "&&" or "||" operators

5. Browser Support

6. Reference

As you know "&&" or "||" operators are used to handle ‘truthy’ and ‘falsy’ values.

Falsy value in JavaScript:

  • null
  • undefined
  • 0
  • NaN
  • false
  • " "

"&&" or "||" operators work well with null or undefined values, but many false values can produce unexpected results.

Let's take an example, here we want to process the response where value is 0(zero). So when you get the response which is falsy, so it will return the right-hand side value.

const response = {
     count : 0
}
const count = response.count || 1;
console.log(count) // 1
Enter fullscreen mode Exit fullscreen mode

To make it work, we will use nullish coalescing operator “??”.

The nullish coalescing operator “??” acts very similar to the operator “||,” except that it doesn’t use “truthy” when evaluating the operator. Instead, it uses the definition of “nullish,” which means that the value is strictly equal to null or undefined.

We will take the same example:

const response = {
     count : 0
}
const count = response.count ?? 1;
console.log(count) // 0
Enter fullscreen mode Exit fullscreen mode

Few Important Points:

1. With operator “||” if the first operand is truthy, it evaluates to the first operand. Otherwise, it evaluates to the second. With Nullish Coalescing operator, if the first operator is falsy but not nullish, it evaluates to the second operand.

console.log(false || true);//true
console.log(false ?? true);//false
Enter fullscreen mode Exit fullscreen mode

2. Zero is evaluated as a falsy value; hence the expression evaluates to the right-hand value using the “|| operator.” But, with Nullish Coalescing operator, zero is not null. Therefore, the expression evaluates to the left-hand value.

console.log(0 || 1); //1
console.log(0 ?? 1); //0
Enter fullscreen mode Exit fullscreen mode

3. Empty string "" is evaluated as a falsy value; hence the expression evaluates to the right-hand value using the “|| operator.” But, with Nullish Coalescing operator, empty string "" is not null. Therefore, the expression evaluates to the left-hand value.

console.log('' || 'supi!');//supi      
console.log('' ?? 'supi');//''
Enter fullscreen mode Exit fullscreen mode

4. If you check with the undefined or null it will be same:

console.log(undefined || 10); // 10
console.log(undefined ?? 10); // 10
console.log(null || 100); // 100
console.log(null ?? 100); // 100
Enter fullscreen mode Exit fullscreen mode

Going to cover more example for better understanding:

const response = {
  settings: {
    nullValue: null,
    height: 400,
    animationDuration: 0,
    headerText: '',
    showSplashScreen: false
  }
};

const undefinedValue = response.settings.undefinedValue ?? 'some other default'; 
// result: 'some other default'

const nullValue = response.settings.nullValue ?? 'some other default'; 
// result: 'some other default'

const headerText = response.settings.headerText ?? 'Hello, world!'; 
// result: ''

const animationDuration = response.settings.animationDuration ?? 300; 
// result: 0

const showSplashScreen = response.settings.showSplashScreen ?? true; 
// result: false
Enter fullscreen mode Exit fullscreen mode

No chaining with && or || operators

It is not possible to combine both the AND (&&) and OR operators (||) directly with ??

A SyntaxError will be thrown in such cases.

null || undefined ?? "supi"; // raises a SyntaxError
true || undefined ?? "supi"; // raises a SyntaxError
Enter fullscreen mode Exit fullscreen mode

However, providing parenthesis to explicitly indicate precedence is correct:

(null || undefined) ?? "supi"; // returns "supi"
Enter fullscreen mode Exit fullscreen mode

Browser Support

It works in recent versions of Chrome or Firefox, among others.

Reference

MDN Nullish coalescing operator

Summary

  • The operator ?? has a very low precedence, a bit higher than ? and =.
  • It’s forbidden to use it with || or && without explicit parentheses.

I hope you find this article useful. Thanks for reading the article ❤️

I hope you love the article. If you have any question, please feel free to ping me on @suprabhasupi 😋

🌟 Twitter 👩🏻‍💻 Suprabha.me 🌟 Instagram

Top comments (1)

Collapse
 
duxtech profile image
Cristian Fernando

Good article! Tanks