On Mon, Oct 1, 2012 at 11:46 PM, Domenic Denicola
<[email protected]> wrote:
> -----Original Message-----
> From: [email protected] [mailto:[email protected]]
> On Behalf Of Brendan Eich
> Sent: Monday, October 1, 2012 21:43
> To: Nicholas C. Zakas
>
>> > I would really like to see a *Set.prototype.toArray* method to easily
>> > change the Set back into an array. A simple use case would be de-duping an
>> > array:
>> >
>> > function dedupe(array) {
>> > return (new Set(array)).toArray();
>> > }
>> >
>> >
>>
>> Array.from is the way we hope to avoid burdening many iterables with
>> "toArray" methods, as Rick pointed out. Ok?
>
> Also:
>
> function dedupe(array) {
> return [...new Set(array)];
> }
I'm not sure we ended up with iteration for spread?
Another alternative:
function dedupe(array) {
return [x for x of new Set(array)];
}
> This works in Firefox Aurora, for the record :)
>
> _______________________________________________
> es-discuss mailing list
> [email protected]
> https://mail.mozilla.org/listinfo/es-discuss
--
erik
_______________________________________________
es-discuss mailing list
[email protected]
https://mail.mozilla.org/listinfo/es-discuss