Mark Volkmann (2014-03-15T00:16:39.000Z)
Does ES6 add any new ways to iterate over the values in an object?
I've done a lot of searching, but haven't seen anything.
I'm wondering if there is something more elegant than this:

Object.keys(myObj).forEach(function (key) {
  let obj = myObj[key];
  // do something with obj
});

-- 
R. Mark Volkmann
Object Computing, Inc.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.mozilla.org/pipermail/es-discuss/attachments/20140314/91651210/attachment-0001.html>
domenic at domenicdenicola.com (2014-03-26T23:06:43.164Z)
Does ES6 add any new ways to iterate over the values in an object?
I've done a lot of searching, but haven't seen anything.
I'm wondering if there is something more elegant than this:

```js
Object.keys(myObj).forEach(function (key) {
  let obj = myObj[key];
  // do something with obj
});
```