Hacker News
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
hzoo
on April 22, 2016
|
parent
|
context
|
favorite
| on:
The average size of Web pages is now the average s...
Yeah, there will be Object.keys/Object.values/Object.entries and you can use it in an for of loop.
for (let [key, value] of Object.entries({a: 1})) { console.log(key, value); }
Consider applying for YC's Fall 2026 batch!
Applications
are open till July 27.
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search:
for (let [key, value] of Object.entries({a: 1})) { console.log(key, value); }