DEV Community

Cover image for Nullish Coalescing: Under 256 characters
Gouthami
Gouthami

Posted on • Edited on

2 1 1 1 1

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)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay