Nullish Coalescing: Under 256 characters

gomigoku

Gouthami

Posted on June 18, 2024

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.

💖 💪 🙅 🚩
gomigoku
Gouthami

Posted on June 18, 2024

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related