forEach在javascript中同时通过两个数组循环

时间:2019-09-12 08:49:35

标签: javascript for-loop vue.js foreach

我想构建一个for循环,该循环同时遍历两个变量。 n是一个数组,j从0到16。

var n = [1,2,3,5,7,8,9,11,12,13,14,16,17,18,20,21,22];
var m = [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16];

m.forEach(k => {
    n.forEach(i => {
        console.log(i, k)
    });
};

最终结果应输出:

1,0
2,1
3,2
5,3
(...)

不幸的是,由于某些原因,该循环没有执行此操作,因为该循环每重复17次。

我在这里想念什么?

1 个答案:

答案 0 :(得分:4)

改为使用第二个参数forEach接受,这将是您要遍历的当前索引:

n = [1,2,3,5,7,8,9,11,12,13,14,16,17,18,20,21,22];

n.forEach((element, index) => {
  console.log(element, index);
});

如果有两个单独的数组开始,则在每次迭代中,访问另一个数组的[index]属性:

var n = [1, 2, 3, 5, 7, 8, 9, 11, 12, 13, 14, 16, 17, 18, 20, 21, 22];
var m = [0, 1, 2, 3, 4, 5, 6, 7,  8,  9,  10, 11, 12, 13, 14, 15, 16];

n.forEach((num1, index) => {
  const num2 = m[index];
  console.log(num1, num2);
});