DEV Community

Discussion on: Try Optional Chaining and Nullish Coalescing on JSitor, its live

 
ashvin777 profile image
Ashvin Kumar Suthar

Nullish coalescing is a little different from the regular ternary operator and && operator statements.

In the statement

val1 ?? val2,

It will return val2 only if val1 is either null or undefined. For the rest of the other conditions, it will always return val1.