* feat(tools): add seed/solution restore script * chore(curriculum): remove empty sections' markers * chore(curriculum): add seed + solution to Chinese * chore: remove old formatter * fix: update getChallenges parse translated challenges separately, without reference to the source * chore(curriculum): add dashedName to English * chore(curriculum): add dashedName to Chinese * refactor: remove unused challenge property 'name' * fix: relax dashedName requirement * fix: stray tag Remove stray `pre` tag from challenge file. Signed-off-by: nhcarrigan <nhcarrigan@gmail.com> Co-authored-by: nhcarrigan <nhcarrigan@gmail.com>
124 lines
1.8 KiB
Markdown
124 lines
1.8 KiB
Markdown
---
|
|
id: 56533eb9ac21ba0edf2244cd
|
|
title: Accessing Nested Arrays
|
|
challengeType: 1
|
|
videoUrl: 'https://scrimba.com/c/cLeGDtZ'
|
|
forumTopicId: 16160
|
|
dashedName: accessing-nested-arrays
|
|
---
|
|
|
|
# --description--
|
|
|
|
As we have seen in earlier examples, objects can contain both nested objects and nested arrays. Similar to accessing nested objects, Array bracket notation can be chained to access nested arrays.
|
|
|
|
Here is an example of how to access a nested array:
|
|
|
|
```js
|
|
var ourPets = [
|
|
{
|
|
animalType: "cat",
|
|
names: [
|
|
"Meowzer",
|
|
"Fluffy",
|
|
"Kit-Cat"
|
|
]
|
|
},
|
|
{
|
|
animalType: "dog",
|
|
names: [
|
|
"Spot",
|
|
"Bowser",
|
|
"Frankie"
|
|
]
|
|
}
|
|
];
|
|
ourPets[0].names[1]; // "Fluffy"
|
|
ourPets[1].names[0]; // "Spot"
|
|
```
|
|
|
|
# --instructions--
|
|
|
|
Retrieve the second tree from the variable `myPlants` using object dot and array bracket notation.
|
|
|
|
# --hints--
|
|
|
|
`secondTree` should equal "pine".
|
|
|
|
```js
|
|
assert(secondTree === 'pine');
|
|
```
|
|
|
|
Your code should use dot and bracket notation to access `myPlants`.
|
|
|
|
```js
|
|
assert(/=\s*myPlants\[1\].list\[1\]/.test(code));
|
|
```
|
|
|
|
# --seed--
|
|
|
|
## --after-user-code--
|
|
|
|
```js
|
|
(function(x) {
|
|
if(typeof x != 'undefined') {
|
|
return "secondTree = " + x;
|
|
}
|
|
return "secondTree is undefined";
|
|
})(secondTree);
|
|
```
|
|
|
|
## --seed-contents--
|
|
|
|
```js
|
|
// Setup
|
|
var myPlants = [
|
|
{
|
|
type: "flowers",
|
|
list: [
|
|
"rose",
|
|
"tulip",
|
|
"dandelion"
|
|
]
|
|
},
|
|
{
|
|
type: "trees",
|
|
list: [
|
|
"fir",
|
|
"pine",
|
|
"birch"
|
|
]
|
|
}
|
|
];
|
|
|
|
// Only change code below this line
|
|
|
|
var secondTree = ""; // Change this line
|
|
```
|
|
|
|
# --solutions--
|
|
|
|
```js
|
|
var myPlants = [
|
|
{
|
|
type: "flowers",
|
|
list: [
|
|
"rose",
|
|
"tulip",
|
|
"dandelion"
|
|
]
|
|
},
|
|
{
|
|
type: "trees",
|
|
list: [
|
|
"fir",
|
|
"pine",
|
|
"birch"
|
|
]
|
|
}
|
|
];
|
|
|
|
// Only change code below this line
|
|
|
|
var secondTree = myPlants[1].list[1];
|
|
```
|