Sultan (2019-03-20T00:59:01.000Z)
Afford array destructuring to Array-like objects.

const [a, b] = {0: a, 1: b, length: 2}
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.mozilla.org/pipermail/es-discuss/attachments/20190320/6fed78a4/attachment.html>
forbes at lindesay.co.uk (2019-04-24T11:20:52.260Z)
Afford array destructuring to Array-like objects.

```js
const [a, b] = {0: a, 1: b, length: 2}
```