forked from johnny-rice/week-02-more-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (44 loc) · 1.35 KB
/
Copy pathindex.html
File metadata and controls
63 lines (44 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Arrays and Such</title>
<script>
let tonightsAttendees = ['Alpha', 'Alvin', 'Ziedah', 'Sharon'];
const currentUser = 'Alpha';
const isUserInAttendance = tonightsAttendees.includes(currentUser);
console.log(isUserInAttendance);
// initialize an empty array
let cars = [];
let smallCar = {
engineSize: 4,
displacement: 2,
fuelType: 'diesel'
};
function getEfficiencyRating (vehicle) {
let rating = 0;
if (vehicle.engineSize < 5) {
rating = 8;
}
if (vehicle.engineSize >= 5 && vehicle.engineSize < 7) {
rating = 6;
}
if (vehicle.fuelType == 'diesel') {
// increment += ++
rating = rating + 1;
}
// > 10 then make it 10
return rating;
}
let vehicle = smallCar;
let something = smallCar;
// send a variable value into the function
// expect a 9
let smallCarRating = getEfficiencyRating(smallCar);
console.log(smallCarRating);
</script>
</head>
<body>
</body>
</html>