Object.values and/or Object.forEach ?
Rick Waldron
waldron.rick at gmail.com
Fri Jun 7 11:21:11 PDT 2013
On Fri, Jun 7, 2013 at 1:25 PM, Brandon Benvie <bbenvie at mozilla.com> wrote:
> On 6/7/2013 10:18 AM, Dean Landolt wrote:
>
>> The for/of iterators solve this nicely. This is definitely something that
>> comes up a lot though, and this seems like a very handy cowpath to pave. If
>> it were spec'd I'd suggest the naming and argument values should align with
>> the for/of variants.
>>
>
> My impression was that the @dict module solves this as you suggest.
>
> import { keys, values, entries } from '@dict';
>
> let obj = { a: 1, b: 2, c: 3 };
>
> for (let key of keys(obj)) {
> // ['a', 'b', 'c']
> }
>
> for (let value of values(obj)) {
> // [1, 2, 3]
> }
>
> for (let [key, value] of entries(obj)) {
> // [['a', 1], ['b', 2], ['c', 3]]
>
> }
>
This is correct:
https://github.com/rwldrn/tc39-notes/blob/master/es6/2012-11/nov-29.md#conclusionresolution-5
Rick
> ______________________________**_________________
> es-discuss mailing list
> es-discuss at mozilla.org
> https://mail.mozilla.org/**listinfo/es-discuss<https://mail.mozilla.org/listinfo/es-discuss>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.mozilla.org/pipermail/es-discuss/attachments/20130607/93cd22ed/attachment.html>
More information about the es-discuss
mailing list