-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path7.js
92 lines (68 loc) · 2.24 KB
/
7.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
function letsRun() {
console.log("** people **");
const people = [
{ name: "Wes", year: 1988 },
{ name: "Kait", year: 1986 },
{ name: "Irv", year: 1970 },
{ name: "Lux", year: 2015 },
];
console.table(people);
console.log("** comments **");
const comments = [
{ text: "Love this!", id: 523423 },
{ text: "Super good", id: 823423 },
{ text: "You are the best", id: 2039842 },
{ text: "Ramen is my fav food ever", id: 123523 },
{ text: "Nice Nice Nice!", id: 542328 },
];
console.table(comments);
// some() and every()
console.log(
"** Array.prototype.some() ** \n Is at least one person 19 or older?"
);
// Method 1
var isAdult = people.some(function (person) {
const currentYear = new Date().getFullYear();
if (currentYear - person.year >= 19) {
return true;
} else {
return false;
}
});
// Method 2
isAdult = people.some((person) => {
return new Date().getFullYear() - person.year >= 19;
});
console.log(isAdult);
console.log({ isAdult });
console.log("** Array.prototype.every() ** \n Is everyone 19 or older?");
isAdult = people.every((person) => {
return new Date().getFullYear() - person.year >= 19;
});
console.log(isAdult);
// find()
console.log(
"** Array.prototype.find() ** \n 'Find is like filter, but instead returns just the one you are looking for' \n Find the comment with the ID of 823423"
);
const comment = comments.find((comment) => {
return comment.id === 823423;
});
console.log(comment);
// findIndex()
console.log(
"** Array.prototype.findIndex() ** \n Find the comment with this ID 823423"
);
const index = comments.findIndex((comment) => comment.id === 823423);
console.log(index);
console.log("Delete the comment with the ID of 823423");
// Method 1
const newComments = [
...comments.slice(0, index),
...comments.slice(index + 1),
];
console.log({ newComments });
// Method 2
comments.splice(index, 1);
console.table(comments);
}
window.addEventListener("DOMContentLoaded", letsRun);