for...of遍歷獲取鍵和值
- 使用Array.prototype.keys:
for (const index of [1, 2, 3, 4, 5].keys()) {
console.log(index);
}
複製程式碼
- 如果要同時訪問鍵和值,可以使用Array.prototype.entries():
for (const [index, value] of [1, 2, 3, 4, 5].entries()) {
console.log(index, value);
}
複製程式碼