-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathexercise3.html
55 lines (44 loc) · 1.93 KB
/
exercise3.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
<html>
<head>
<title>This is exercise 3</title>
<script>
debugger;
var personList = [
{ id: 1, name: "Emrah", surname: "Öz", age: 35 },
{ id: 2, name: "Ahmet", surname: "Öz", age: 12 },
{ id: 3, name: "Ayşe", surname: "Öz", age: 9 },
{ id: 4, name: "Kerem", surname: "Öz", age: 55 },
];
function listItems() {
for (var i = 0; i < personList.length; i++) {
var newRow = document.createElement("div");
newRow.id = personList[i].id;
if (personList[i].age > 50) {
newRow.innerHTML = personList[i].name + " " + personList[i].surname + " (" + personList[i].age + " yuhh.." + ")";
} else if (personList[i].age > 30) {
newRow.innerHTML = personList[i].name + " " + personList[i].surname + " (" + personList[i].age + " riskli.." + ")";
} else if (personList[i].age > 10) {
newRow.innerHTML = personList[i].name + " " + personList[i].surname + " (" + personList[i].age + " genç.." + ")";
} else {
newRow.innerHTML = personList[i].name + " " + personList[i].surname + " (" + personList[i].age + " coook genç.." + ")";
}
document.getElementById("details").appendChild(newRow);
}
}
var myCar = {
Brand: 'Fiat',
Model: '500L',
Year: 2017
}
function displayCar()
{
document.getElementById("details").innerHTML= "Your car brand: " + myCar.Brand + ", your car model: " + myCar.Model + ", your car model year: " + myCar.Year;
}
</script>
</head>
<body>
<h1>This is the third exercise.</h1>
<button onclick="listItems()">Click Here To List</button> <button onclick="displayCar()">Display car</button>
<div id="details"></div>
</body>
</html>