This is a computer science under 256 characters challenge
Nullish coalescing (??) in JavaScript returns the right operand if the left operand is null or undefined; otherwise, it returns the left operand.
Example: let result = value ?? 'default'; ensures result gets 'default' only if value is null or undefined.
Top comments (0)