Ask Your Question
3

What is the process for retrieving values from a multi-dimensional array in JavaScript?

asked 2022-05-26 11:00:00 +0000

david gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2023-04-06 00:00:00 +0000

lakamha gravatar image

To retrieve values from a multi-dimensional array in JavaScript, you need to specify the index positions for each dimension. For example:

var myArray = [[1, 2], [3, 4], [5, 6]];

// Retrieving value at row 0, column 1
var value = myArray[0][1]; // returns 2

// Retrieving value at row 2, column 0
var value = myArray[2][0]; // returns 5

In this example, myArray is a 3x2 multi-dimensional array. To retrieve a specific value, we specify the row and column index using square brackets. The outer brackets represent the rows while the inner brackets represent the columns.

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-05-26 11:00:00 +0000

Seen: 16 times

Last updated: Apr 06 '23