How to transcribe this nullish coalescing operator with added equal mark to regular ternary operator

Viewed 37

How would this shortcut nullish operator be in the plain ternary operator syntax

obj = obj[array[i]] ??= {}

What is confusing for me here is the added = after the two ??

1 Answers
Related