The nullish coalescing assignment (??=) operator, also known as the logical nullish assignment operator, only evaluates the right operand and assigns to the left if the left operand is nullish (null or undefined).... Try it Syntax js x ??= y Description Nullish coalescing...error, despite x being const : js const x = 1; x ??= 2; Neither...