> a = { b : {} }; > f = a["b"]["c"]["d"]["e"] Uncaught TypeError: Cannot read properties of undefined (reading 'd') at :1:16 > f = a.b.c.d.e Uncaught TypeError: Cannot read properties of undefined (reading 'd') at :1:11