Nullish Coalescing (JavaScript)
The nullish coalescing operator (??) returns its right-hand value only when the left-hand value is null or undefined. It is a safer default than ||.
The nullish coalescing operator (??) returns its right-hand value only when the left-hand value is null or undefined. It is a safer default than ||.