How can you attempt to access the property a.b on obj without throwing an error if a is undefined?
a.b
obj
let obj = {};
obj.a?.b
obj[a][b]
obj?.a.b
obj.?a.?b