乐趣区

关于javascript:JS-中循环遍历数组方式总结

作者:Axel Rauschmayer

翻译:疯狂的技术宅

https://2ality.com/2021/01/lo…

本文比拟并总结遍历数组的四种形式:

  • for 循环:
for (let index=0; index < someArray.length; index++) {const elem = someArray[index];
  // ···
}
  • for-in 循环:
for (const key in someArray) {console.log(key);
}
  • 数组办法 .forEach()
someArray.forEach((elem, index) => {console.log(elem, index);
});
  • for-of 循环:
for (const elem of someArray) {console.log(elem);
}

for-of 通常是最佳抉择。咱们会明确起因。


for 循环 [ES1]

JavaScript 中的 for 循环很古老,它在 ECMAScript 1 中就曾经存在了。for 循环记录 arr 每个元素的索引和值:

const arr = ['a', 'b', 'c'];
arr.prop = 'property value';

for (let index=0; index < arr.length; index++) {const elem = arr[index];
  console.log(index, elem);
}

// Output:
// 0, 'a'
// 1, 'b'
// 2, 'c'

for 循环的优缺点是什么?

  • 它用处宽泛,然而当咱们要遍历数组时也很麻烦。
  • 如果咱们不想从第一个数组元素开始循环时它依然很有用,用其余的循环机制很难做到这一点。

for-in 循环 [ES1]

for-in 循环与 for 循环一样古老,同样在 ECMAScript 1 中就存在了。上面的代码用 for-in 循环输入 arr 的 key:

const arr = ['a', 'b', 'c'];
arr.prop = 'property value';

for (const key in arr) {console.log(key);
}

// Output:
// '0'
// '1'
// '2'
// 'prop'

for-in 不是循环遍历数组的好办法:

  • 它拜访的是属性键,而不是值。
  • 作为属性键,数组元素的索引是字符串,而不是数字。
  • 它拜访的是所有可枚举的属性键(本人的和继承的),而不仅仅是 Array 元素的那些。

for-in 拜访继承属性的理论用处是:遍历对象的所有可枚举属性。

数组办法 .forEach() [ES5]

鉴于 forfor-in 都不特地适宜在数组上循环,因而在 ECMAScript 5 中引入了一个辅助办法:Array.prototype.forEach()

const arr = ['a', 'b', 'c'];
arr.prop = 'property value';

arr.forEach((elem, index) => {console.log(elem, index);
});

// Output:
// 'a', 0
// 'b', 1
// 'c', 2

这种办法的确很不便:它使咱们无需执行大量操作就可能可拜访数组元素和索引。如果用箭头函数(在 ES6 中引入)的话,在语法上会更加优雅。

.forEach() 的次要毛病是:

  • 不能在它的循环体中应用 await
  • 不能提前退出 .forEach() 循环。而在 for 循环中能够应用 break

停止 .forEach() 的解决办法

如果想要停止 .forEach() 之类的循环,有一种解决办法:.some() 还会循环遍历所有数组元素,并在其回调返回真值时进行。

const arr = ['red', 'green', 'blue'];
arr.some((elem, index) => {if (index >= 2) {return true; // 停止循环}
  console.log(elem);
  // 此回调隐式返回 `undefined`,这
  // 是一个伪值。因而,循环持续。});

// Output:
// 'red'
// 'green'

能够说这是对 .some() 的滥用,与 for-ofbreak 比起来,要了解这段代码并不容易。

for-of 循环 [ES6]

for-of 循环在 ECMAScript 6 开始反对:

const arr = ['a', 'b', 'c'];
arr.prop = 'property value';

for (const elem of arr) {console.log(elem);
}
// Output:
// 'a'
// 'b'
// 'c'

for-of 在循环遍历数组时十分无效:

  • 用来遍历数组元素。
  • 能够应用 await

    • 如果有须要,能够轻松地迁徙到 for-await-of
  • 甚至能够将 breakcontinue 用于内部作用域。

for-of 和可迭代对象

for-of 不仅能够遍历数组,还能够遍历可迭代对象,例如遍历 Map:

const myMap = new Map()
  .set(false, 'no')
  .set(true, 'yes')
;
for (const [key, value] of myMap) {console.log(key, value);
}

// Output:
// false, 'no'
// true, 'yes'

遍历 myMap 会生成 [键,值] 对,能够通过对其进行解构来间接拜访每一对数据。

for-of 和数组索引

数组办法 .entries() 返回一个可迭代的 [index,value] 对。如果应用 for-of 并应用此办法进行解构,能够很不便地拜访数组索引:

const arr = ['chocolate', 'vanilla', 'strawberry'];

for (const [index, elem] of arr.entries()) {console.log(index, elem);
}
// Output:
// 0, 'chocolate'
// 1, 'vanilla'
// 2, 'strawberry'

总结

for-of 循环的的可用性比 forfor-in.forEach() 更好。

通常四种循环机制之间的性能差别应该是无关紧要。如果你要做一些运算量很大的事,还是切换到 WebAssembly 更好一些。


本文首发微信公众号:前端先锋

欢送扫描二维码关注公众号,每天都给你推送陈腐的前端技术文章


欢送持续浏览本专栏其它高赞文章:

  • 深刻了解 Shadow DOM v1
  • 一步步教你用 WebVR 实现虚拟现实游戏
  • 13 个帮你进步开发效率的古代 CSS 框架
  • 疾速上手 BootstrapVue
  • JavaScript 引擎是如何工作的?从调用栈到 Promise 你须要晓得的所有
  • WebSocket 实战:在 Node 和 React 之间进行实时通信
  • 对于 Git 的 20 个面试题
  • 深刻解析 Node.js 的 console.log
  • Node.js 到底是什么?
  • 30 分钟用 Node.js 构建一个 API 服务器
  • Javascript 的对象拷贝
  • 程序员 30 岁前月薪达不到 30K,该何去何从
  • 14 个最好的 JavaScript 数据可视化库
  • 8 个给前端的顶级 VS Code 扩大插件
  • Node.js 多线程齐全指南
  • 把 HTML 转成 PDF 的 4 个计划及实现

  • 更多文章 …
退出移动版