#nullish-coalescing
Read more stories on Hashnode
Articles with this tag
(raw notes)Nullish coalescing operator (??) if the left side operand is NULL or UNDEFINED, the right-hand side operand is returned.const foo = null ??...