-
Notifications
You must be signed in to change notification settings - Fork 3.6k
/
Copy pathobjects-arrays.js
171 lines (130 loc) · 6.98 KB
/
objects-arrays.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
// ==== Objects ====
/*
Given the following information about dinosaurs, create 3 objects:
Use this pattern to create your objects:
object name, diet, weight, length, period
*/
// tyrannosaurus, carnivorous, 7000kg, 12m, Late Cretaceous
const tyrannosaurus = {
name: 'tyrannosaurus',
diet: 'carnivorous',
weight: '7000kg',
length: '12m',
period: "Late Cretaceous",
roar(){
return "RAWERSRARARWERSARARARRRR";
}
}
// stegosaurus, herbivorous, 2000kg, 9m, Late Jurassic
const stegosaurus = {
name: 'stegosaurus',
diet: 'herbivorous',
weight: '2000kg',
length: '9m',
period: "Late Jurassic"
}
// velociraptor, carnivorous, 15kg, 1.8m, Late Cretaceous
const velociraptor = {
name: 'velociraptor',
diet: 'carnivorous',
weight: '15kg',
length: '1.8m',
period: "Late Cretaceous"
}
// Using your dinosaur objects, log answers to these questions:
// How much did tyrannosaurus weigh?
console.log(tyrannosaurus.weight);
// What was the diet of a velociraptor?
console.log(velociraptor.diet);
// How long was a stegosaurus?
console.log(stegosaurus.length);
// What time period did tyrannosaurus live in?
console.log(tyrannosaurus.period);
// Create a new roar method for the tyrannosaurus. When called, return "RAWERSRARARWERSARARARRRR!" Log the result.
console.log(tyrannosaurus.roar());
// ==== Arrays ====
// Given an array of college graduates. Complete the following requests using any array method you like
const graduates = [
{ id: 1, first_name: "Cynde", university: "Missouri Southern State College", email: "[email protected]" },
{ id: 2, first_name: "Saundra", university: "The School of the Art Institute of Chicago", email: "[email protected]" },
{ id: 3, first_name: "Lambert", university: "Marian College", email: "[email protected]" },
{ id: 4, first_name: "Modestine", university: "International Medical & Technological University", email: "[email protected]" },
{ id: 5, first_name: "Chick", university: "Sultan Salahuddin Abdul Aziz Shah Polytechnic", email: "[email protected]" },
{ id: 6, first_name: "Jakob", university: "Fachhochschule Rosenheim, Hochschule für Technik und Wirtschaft", email: "[email protected]" },
{ id: 7, first_name: "Robbi", university: "Salem University", email: "[email protected]" },
{ id: 8, first_name: "Colline", university: "Coastal Carolina University", email: "[email protected]" },
{ id: 9, first_name: "Michail", university: "Universidad Católica de Ávila", email: "[email protected]" },
{ id: 10, first_name: "Hube", university: "Universitat Rovira I Virgili Tarragona", email: "[email protected]" },
];
/* Request 1: Create a new array called universities that contains all the universities in the graduates array. This will be an array of strings.
Once you have the new array created, sort the universities alphabetically and log the result. */
const universities = [];
graduates.forEach(element => universities.push(element.university));
console.log(universities);
/* Request 2: Create a new array called contactInfo that contains both first name and email of each student. This will be an array of strings.
The resulting contact information strings should have a space between the first name and the email, like this:
"Josh [email protected]"
Log the result of your new array. */
const contactInfo = [];
graduates.forEach(student => contactInfo.push(`${student.first_name} ${student.email}`));
console.log(contactInfo);
/* Request 3: Find out how many universities have the string "Uni" included in their name. Create a new array called unisWithUni that contains them all. This will be an array of objects. Log the result. */
const unisWithUni = [];
for(let i=0; i < universities.length; i++){
let university = universities[i];
if(university.includes("Uni"))
{
unisWithUni.push(university);
}
}
console.log(unisWithUni);
// ==== ADVANCED Array Methods ====
// Given this zoo data from around the United States, follow the instructions below. Use the specific array methods in the requests below to solve the problems.
const zooAnimals = [
{ animal_name: "Jackal, asiatic", population: 5, scientific_name: "Canis aureus", state: "Kentucky" },
{ animal_name: "Screamer, southern", population: 1, scientific_name: "Chauna torquata", state: "Alabama" },
{ animal_name: "White spoonbill", population: 8, scientific_name: "Platalea leucordia", state: "Georgia" },
{ animal_name: "White-cheeked pintail", population: 1, scientific_name: "Anas bahamensis", state: "Oregon" },
{ animal_name: "Black-backed jackal", population: 2, scientific_name: "Canis mesomelas", state: "Washington" },
{ animal_name: "Brolga crane", population: 9, scientific_name: "Grus rubicundus", state: "New Mexico" },
{ animal_name: "Common melba finch", population: 5, scientific_name: "Pytilia melba", state: "Pennsylvania" },
{ animal_name: "Pampa gray fox", population: 10, scientific_name: "Pseudalopex gymnocercus", state: "Connecticut" },
{ animal_name: "Hawk-eagle, crowned", population: 10, scientific_name: "Spizaetus coronatus", state: "Florida" },
{ animal_name: "Australian pelican", population: 5, scientific_name: "Pelecanus conspicillatus", state: "West Virginia" },
];
/* Request 1: .forEach()
The zoos want to display both the scientific name and the animal name in front of the habitats.
Populate the displayNames array with only the animal_name and scientific_name of each animal.
isplayNames will be an array of strings, and each string should follow this pattern:
"Name: Jackal, asiatic, Scientific: Canis aureus."
*/
const displayNames = [];
zooAnimals.forEach(animal => displayNames.push(`Name: ${animal.animal_name}, Scientific: ${animal.scientific_name}`));
console.log(displayNames);
/* Request 2: .map()
The zoos need a list of all their animal's names (animal_name only) converted to lower case.
Using map, create a new array of strings named lowCaseAnimalNames, each string following this pattern:
"jackal, asiatic". Log the resut.
*/
const lowCaseAnimalNames = [];
zooAnimals.map(animal => lowCaseAnimalNames.push(animal.animal_name.toLowerCase()));
console.log(lowCaseAnimalNames);
/* Request 3: .filter()
The zoos are concerned about animals with a lower population count.
Using filter, create a new array of objects called lowPopulationAnimals which contains only the animals with a population less than 5.
*/
const lowPopulationAnimals = [];
lowPopulationAnimals.push(zooAnimals.filter(animal => animal.population < 5));
console.log(lowPopulationAnimals);
/* Request 4: .reduce()
The zoos need to know their total animal population across the United States.
Find the total population from all the zoos using the .reduce() method.
Remember the reduce method takes two arguments: a callback (which itself takes two args), and an initial value for the count.
*/
const populationTotal = zooAnimals.reduce(function(accumulator, cb){
return accumulator + cb.population;
}, 0);
console.log(populationTotal);
/*
Stretch: If you haven't already, convert your array method callbacks into arrow functions.
*/