Web features explorer

Nullish coalescing

Widely available since 2023-03-16
Tags: javascript Groups: JavaScript

The nullish coalescing (??) and nullish coalescing assignment (??=) operators return (or assign) its right-hand side operand when its left-hand side operand is null or undefined, and otherwise returns its left-hand side operand.

Learning resources on MDN

Browser support

Specifications