Cyril Auburtin (2017-04-16T15:16:05.000Z)
I often use

```js
Array.from({length: n}, (_, i) => i**2)
Array.from({length: n}, (_, i) => Array.from({length: n}, (_, j) => i*j))
[].concat(...Array.from({length: n}, (_, i) => Array.from({length: n}, (_,
j) => ({i,j,v:i*j})))) // flattened
```

2017-02-07 23:13 GMT+01:00 kdex <kdex at kdex.de>:

> AFAIK, only TC39 members can champion a proposal.
>
> If you're not a member, you could still write a proposal and hope that
> some TC39 member is interested in championing it.
>
> On Tuesday, February 7, 2017 5:05:49 PM CET Ryan Birmingham wrote:
> > It wasn't clear from the documentation; who can or cannot be a champion?
> >
> > -Ryan Birmingham
> >
> > On 7 February 2017 at 10:49, Bob Myers <rtm at gol.com> wrote:
> >
> > > On Tue, Feb 7, 2017 at 6:58 PM, David Bruant <bruant.d at gmail.com>
> wrote:
> > >
> > >> At the very least, the proposal will be listed in the stage 0
> proposals
> > >> list [3].
> > >
> > >
> > > My understanding is that a champion is required even to become stage 0.
> > >
> >
> _______________________________________________
> es-discuss mailing list
> es-discuss at mozilla.org
> https://mail.mozilla.org/listinfo/es-discuss
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.mozilla.org/pipermail/es-discuss/attachments/20170416/d99c9d0d/attachment.html>
cyril.auburtin at gmail.com (2017-04-16T15:17:48.065Z)
I often use

```js
Array.from({length: n}, (_, i) => i**2)
Array.from({length: n}, (_, i) => Array.from({length: n}, (_, j) => i*j))
[].concat(...Array.from({length: n}, (_, i) => Array.from({length: n}, (_, j) => ({i,j,v:i*j})))) // flattened
```

2017-02-07 23:13 GMT+01:00 kdex <kdex at kdex.de>: