-
Notifications
You must be signed in to change notification settings - Fork 0
/
old-script.js
172 lines (138 loc) · 3.44 KB
/
old-script.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
171
172
function getProverb(sentence, callback) {
callback("The proverb of the day is: " + sentence)
}
getProverb("Wer dich vemisst, wird anrufen.", function (proverb) {
console.log(proverb)
})
getProverb("Wer nicht hören will, muss fühlen", (proverb) =>
console.log(proverb)
)
let proverbOfTheDay = (a, b) => {
return a + b
}
console.log(
proverbOfTheDay(
"The proverb of the day is: ",
"Wer nicht hören will, muss fühlen."
)
)
let printName = (name) => {
console.log(name)
}
printName("Guest")
let printHi = (name) => "Hi " + name + "!"
console.log(printHi("Guest"))
let proverbArray = [
{
id: 1,
sentence: "Es ist noch kein Meister vom Himmel gefallen.",
points: 1,
},
{
id: 2,
sentence:
"Wer dich vermisst, wird anrufen. Wer dich will, sagt es. Wer Interesse hat, zeigt es.",
points: 1,
},
{
id: 3,
sentence:
"Die Lüge hat zwar kurze Beine, rennt aber schneller als die Wahrheit.",
points: 1,
},
{
id: 4,
sentence: "Für Geld und gute Worte kann man alles haben.",
points: 1,
},
{
id: 5,
sentence: "Wer nicht hören will, muss fühlen.",
points: 1,
},
{
id: 6,
sentence: "Reibung erzeugt Wärme.",
points: 1,
},
{
id: 7,
sentence: "Wer zuerst kommt, mahlt zuerst.",
points: 1,
},
{
id: 8,
sentence: "Wer nicht wagt, der nicht gewinnt.",
points: 1,
},
{
id: 9,
sentence: "Wer anderen eine Grube gräbt, fällt selbst hinein.",
points: 1,
},
{
id: 10,
sentence: "Morgenstund hat Gold im Mund.",
points: 1,
},
]
let proverbCount = proverbArray.reduce((sum, item) => {
return sum + item.points
}, 0)
console.log("Total proverbs count: " + proverbCount)
let proverbFilter = proverbArray.filter((string) => {
return string.id > 0
})
console.log(proverbFilter)
let proverbFind = proverbArray.find((string) => {
return string.id > 5
})
console.log(proverbFind)
let proverbSome = proverbArray.some((string) => {
return (string.id = 3)
})
console.log(proverbSome)
class Proverb {
constructor(sentence, language) {
this.sentence = sentence
this.language = language
}
printProverb() {
console.log(this.sentence)
}
}
let proverb = new Proverb(
"Wer zu spät kommt, den bestraft das Leben.",
"German"
)
let proverb7 = new Proverb("Wer nicht wagt, der nicht gewinnt.", "German")
proverb7.printProverb()
console.log(document.documentElement)
const form = document.querySelector("#proverb-form")
const list = document.querySelector("#newest-proverb")
const input = document.querySelector("#proverb-input")
const link = document.querySelector("[data-url]")
form.addEventListener("submit", (event) => {
event.preventDefault()
// console.log(input.value)
const item = document.createElement("div")
item.innerText = input.value
item.classList.add("proverb")
list.appendChild(item)
input.value = ""
})
const h1 = document.getElementById("h1")
h1.style.color = "black"
const divProverb = document.getElementsByClassName("proverb")
const divProverbWithArray = Array.from(divProverb)
divProverbWithArray.forEach((div) => {
div.style.color = "grey"
})
const grandParent = document.querySelector("#proverb-block")
const parentOne = grandParent.children[1]
const parentTwo = parentOne.nextElementSibling
const childOne = parentTwo.children[1]
grandParent.style.color = "black"
parentOne.style.color = "red"
parentTwo.style.color = "blue"
// childOne.style.color = "green"