-
Notifications
You must be signed in to change notification settings - Fork 0
/
6-exercise.js
48 lines (44 loc) · 1.22 KB
/
6-exercise.js
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
// Exercise 6: Use forEach() to collect only those videos with a rating of 5.0
function fn() {
const newReleases = [
{
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 }]
},
{
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 }]
}
];
const videos = [];
newReleases.forEach(function(nr) {
if (nr.rating === 5.0) {
videos.push(nr);
}
});
return videos;
}