Nullish coalescing operator (??)
The nullish coalescing operator (??) is a logical operator that returns the right hand side of operator (second argument) only when the left hand side (first argument) is null or undefined. In all the other cases it returns the first argument.
Lets ...
srishti-gautam.hashnode.dev3 min read