-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflattenTreeArraywithforEach.js
More file actions
63 lines (58 loc) · 1.64 KB
/
flattenTreeArraywithforEach.js
File metadata and controls
63 lines (58 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// Flatten the movieLists array into an array of video ids
// Using two nested forEach loops to collect
// the id of every video in the two-dimensional movieLists array.
(function() {
var movieLists = [
{
name: "New Releases",
videos: [
{
"id": 70111470,
"title": "Die Hard",
"boxart": "http://cdn-0.nflximg.com/images/2891/DieHard.jpg",
"uri": "http://api.netflix.com/catalog/titles/movies/70111470",
"rating": 4.0,
"bookmark": []
},
{
"id": 654356453,
"title": "Bad Boys",
"boxart": "http://cdn-0.nflximg.com/images/2891/BadBoys.jpg",
"uri": "http://api.netflix.com/catalog/titles/movies/70111470",
"rating": 5.0,
"bookmark": [{ id: 432534, time: 65876586 }]
}
]
},
{
name: "Dramas",
videos: [
{
"id": 65432445,
"title": "The Chamber",
"boxart": "http://cdn-0.nflximg.com/images/2891/TheChamber.jpg",
"uri": "http://api.netflix.com/catalog/titles/movies/70111470",
"rating": 4.0,
"bookmark": []
},
{
"id": 675465,
"title": "Fracture",
"boxart": "http://cdn-0.nflximg.com/images/2891/Fracture.jpg",
"uri": "http://api.netflix.com/catalog/titles/movies/70111470",
"rating": 5.0,
"bookmark": [{ id: 432534, time: 65876586 }]
}
]
}
];
var allVideoIdsInMovieLists = [];
movieLists.forEach(function(itemsList) { // movieLists items name, videos
itemsList.videos.forEach(function(item) { // videos items id, title, boxart, uri, rating, bookmark
allVideoIdsInMovieLists.push(item.id);
});
});
return allVideoIdsInMovieLists;
})();
// Output
// [70111470, 654356453, 65432445, 675465]