#optional-chaining
Read more stories on Hashnode
Articles with this tag
let a = {}; a?.k1 = 1; If you run the above example, you will meet this error in Chrome. Invalid left-hand side in assignment I think it should...