-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathindex.html
57 lines (47 loc) · 1.49 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<script>
// ## Array Cardio Day 2
const people = [
{ name: 'Wes', year: 1988 },
{ name: 'Kait', year: 1986 },
{ name: 'Irv', year: 1970 },
{ name: 'Lux', year: 2015 },
];
const comments = [
{ text: 'Love this!', id: 523423 },
{ text: 'Super good', id: 823423 },
{ text: 'You are the best', id: 2039842 },
{ text: 'Ramen in my fav food ever', id: 123523 },
{ text: 'Nice Nice Nice!', id: 542328 }
];
const yr = new Date().getFullYear();
// Some and Every Checks
// Array.prototype.some()
// is at least one person 19?
const isAdult = people.some(({year}) => yr - year >= 19);
console.log({ isAdult });
// Array.prototype.every() // is everyone 19?
const allAdults = people.every(({year}) => yr - year >= 19);
console.log({ allAdults });
// Array.prototype.find()
// Find is like filter, but instead returns just the one you are looking for
// find the comment with the ID of 823423
const comment = comments.find(({id}) => id === 823423);
console.log(comment);
// Array.prototype.findIndex()
// Find the comment with this ID 823423 and delete it
const index = comments.findIndex(({id}) => id === 823423);
const newComments = [
...comments.slice(0, index),
...comments.slice(index + 1)
];
console.table(newComments)
</script>
</body>
</html>