```js ++[[]][0] ``` results in ```js ++[] ``` which is invalid syntax. When chained together ```js ++[++[++[[]][0]][0]][0] ``` it results in ```js ++++++[]; ``` Expected result would be `1` and `3` respectively.
results in
which is invalid syntax.
When chained together
it results in
Expected result would be
1and3respectively.