Open
Description
What
Using the Playground with the newest version 1.16 I expected Posts[10]?.Title
to result in undefined whereas it throws
reflect: slice index out of range (3:6)
| Posts[10]?.Title
| .....^
Just like in JS [][1]?.a
also works and yields null/undefined making things like [][1]?.a ?? 42
work where as Posts[10]?.Title ?? "default"
does not work currently in with this library.
Or is this expected/deliberate?