Nullish Coalescing: Under 256 characters
Gouthami
Posted on June 18, 2024
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
.
💖 💪 🙅 🚩
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.