Nullish Coalescing Operator (??) in Javascript
The Nullish coalescing operator (??) is a logical operator that returns its right-hand side operand when its left-hand side operand is null or undefined and otherwise returns its left-hand side operand.
const userName = null ?? 'prathmesh';
console.l...
prathmesh.hashnode.dev2 min read
noface
๐๐๐