The Nullish Coalescing Operators - JS in 3 minutes or less - Medium

You may be familiar with the conditional ternary operator (a ? b : c), but there’s a lesser known binary operator (a ?? b) that simplifies cases where the value of one parameter is used as a fallback…

JS in 3 minutes or less