(raw notes)Nullish coalescing operator (??)
if the left side operand is NULL or UNDEFINED, the right-hand side operand is returned.const foo = null ?? 'default string'; console.log(foo); // Expected output: "default string"
Nullish values are : NULL ...