2018-09-30 23:01:58 +01:00
---
id: 56592a60ddddeae28f7aa8e1
title: Access Multi-Dimensional Arrays With Indexes
challengeType: 1
2020-05-21 17:31:25 +02:00
isHidden: false
2019-02-14 12:24:02 -05:00
videoUrl: 'https://scrimba.com/c/ckND4Cq'
2019-07-31 11:32:23 -07:00
forumTopicId: 16159
2018-09-30 23:01:58 +01:00
---
## Description
< section id = 'description' >
One way to think of a < dfn > multi-dimensional< / dfn > array, is as an < em > array of arrays< / em > . When you use brackets to access your array, the first set of brackets refers to the entries in the outer-most (the first level) array, and each additional pair of brackets refers to the next level of entries inside.
< strong > Example< / strong >
2019-05-17 06:20:30 -07:00
```js
var arr = [
[1,2,3],
[4,5,6],
[7,8,9],
[[10,11,12], 13, 14]
];
arr[3]; // equals [[10,11,12], 13, 14]
arr[3][0]; // equals [10,11,12]
arr[3][0][1]; // equals 11
```
2020-02-24 11:02:53 -05:00
< strong > Note</ strong >< br > There shouldn't be any spaces between the array name and the square brackets, like `array [0][0]` and even this `array [0] [0]` is not allowed. Although JavaScript is able to process this correctly, this may confuse other programmers reading your code.
2018-09-30 23:01:58 +01:00
< / section >
## Instructions
< section id = 'instructions' >
Using bracket notation select an element from < code > myArray< / code > such that < code > myData< / code > is equal to < code > 8< / code > .
< / section >
## Tests
< section id = 'tests' >
```yml
2018-10-04 14:37:37 +01:00
tests:
- text: < code > myData</ code > should be equal to < code > 8</ code > .
2019-07-13 00:07:53 -07:00
testString: assert(myData === 8);
2018-10-04 14:37:37 +01:00
- text: You should be using bracket notation to read the correct value from < code > myArray</ code > .
2019-03-26 02:12:21 +05:30
testString: assert(/myData=myArray\[2\]\[1\]/.test(code.replace(/\s/g, '')));
2018-09-30 23:01:58 +01:00
```
< / section >
## Challenge Seed
< section id = 'challengeSeed' >
< div id = 'js-seed' >
```js
// Setup
var myArray = [[1,2,3], [4,5,6], [7,8,9], [[10,11,12], 13, 14]];
2020-03-02 23:18:30 -08:00
// Only change code below this line
2018-09-30 23:01:58 +01:00
var myData = myArray[0][0];
```
< / div >
### After Test
< div id = 'js-teardown' >
```js
2018-10-20 21:02:47 +03:00
if(typeof myArray !== "undefined"){(function(){return "myData: " + myData + " myArray: " + JSON.stringify(myArray);})();}
2018-09-30 23:01:58 +01:00
```
< / div >
< / section >
## Solution
< section id = 'solution' >
```js
var myArray = [[1,2,3],[4,5,6], [7,8,9], [[10,11,12], 13, 14]];
var myData = myArray[2][1];
```
< / section >