1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
| let arr = ['a', 'b', 'c'];
let o = { name: 'chang', age: 18 };
for (const item of arr) { }
for (const item of arr.keys()) { }
for (const item of arr.entries()) { }
for (const item of Object.keys(o)) { }
for (const item of Object.values(o)) { }
for (const item of Object.entries(o)) { console.log(item); }
|