forEach loop through two arrays at the same time in javascript [duplicate] forEach loop through two arrays at the same time in javascript [duplicate] vue.js vue.js

forEach loop through two arrays at the same time in javascript [duplicate]


Use the second parameter forEach accepts instead, which will be the current index you're iterating over:

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);});