What is nullish coalescing and how does it work?
Nullish coalescing(??) is a logical operator introduced in ES6+ which can be used to provide a default value if the value is null or undefined. It will first check the value of the left-hand side operand and if that evaluates to null or undefined th...
sakshichaudhary.hashnode.dev2 min read