en.javascript.info
en.javascript.info copied to clipboard
Added description of operator `??=`
Nullish coalescing operator '??'
ECMAScript 2021 introduced the nullish assignment operator ??=.
x ??= y; // x ?? (x = y);