Nullish Coalescing Operator (??) vs OR Operator (||)
The word 'Nullish' means the value which is null or undefined.
Nullish Coalescing is a logical operator in javascript which returns the right-hand side operand in case of left-hand side operand is null or undefined.
Lets understand this through an ex...
mahendrachauhan.hashnode.dev1 min read