#TIL the nullish coalescing assignment operator exists in #JavaScript. It only assigns the value if the current one is null/undefined.
const person = {}
person.name ??= 'Geoff Testington'
#TIL the nullish coalescing assignment operator exists in #JavaScript. It only assigns the value if the current one is null/undefined.
const person = {}
person.name ??= 'Geoff Testington'