On Fri, Mar 22, 2019 at 10:32 AM guest271314 <guest271...@gmail.com> wrote:

>
> If gather the expected result correctly object destructuring can be used
>
>     const {0: a, 1: b} = {0: a, 1: b, length: 2}
>

var a = "testa", b="testb"; const {0: c, 1: d} = {0: a, 1: b, length: 2}
results in a const 'c' and const 'd' created with the vlaues of a and b.

shouldn't it have created a variable '0' and '1' ?

>
> On Wed, Mar 20, 2019 at 12:59 AM Sultan <thysul...@gmail.com> wrote:
>
>> Afford array destructuring to Array-like objects.
>>
>> const [a, b] = {0: a, 1: b, length: 2}
>>
>>
>> _______________________________________________
>> es-discuss mailing list
>> es-discuss@mozilla.org
>> https://mail.mozilla.org/listinfo/es-discuss
>>
> _______________________________________________
> es-discuss mailing list
> es-discuss@mozilla.org
> https://mail.mozilla.org/listinfo/es-discuss
>
_______________________________________________
es-discuss mailing list
es-discuss@mozilla.org
https://mail.mozilla.org/listinfo/es-discuss

Reply via email to