DEV Community

Cover image for Nullish Coalescing: Under 256 characters
Gouthami
Gouthami

Posted on • Updated on

Nullish Coalescing: Under 256 characters

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)