```map[a][b][c][d]?.let { ...``` What's the best w...
# announcements
v
Copy code
map[a][b][c][d]?.let { ...
What's the best way to write this? Something like
map[a]?.[b]?.[c]?. ...
, but that syntax doesn't work.