Ask Your Question
3

What is the way to go through an array of arrays utilizing the each function?

asked 2022-10-21 11:00:00 +0000

bukephalos gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2023-01-23 23:00:00 +0000

david gravatar image

Here is an example of how to go through an array of arrays using the each function in JavaScript:

const arrOfArrs = [
  [1, 2, 3],
  [4, 5, 6],
  [7, 8, 9]
];

arrOfArrs.forEach((arr) => {
  arr.forEach((num) => {
    console.log(num);
  });
});

In this example, we have an array called arrOfArrs which contains three arrays of numbers. We use the forEach method to go through each array in arrOfArrs, and then use another forEach method to go through each number in the current sub-array. Finally, we log each number to the console.

This will output the numbers 1 through 9 in order.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-10-21 11:00:00 +0000

Seen: 10 times

Last updated: Jan 23 '23