-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3-generator.html
42 lines (28 loc) · 1014 Bytes
/
3-generator.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
<input
type="number"
id="zahl"
placeholder="Zahl"
oninput="zahlChanged()">
<p id="display"></p>
<script>
// Math ist ein Objekt, welches in allen JavaScript Programmen zur Verfügung steht.
const secret = Math.floor(Math.random() * 10)
console.log(secret)
function zahlChanged() {
if(zahl.value == secret){
display.innerText = "Richtig! 🍺"
}else{
display.innerText = "Falsch 💩"
}
}
</script>
<!--
Aufgaben
1. Welche Werte kann secret haben?
Tip: https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/Math/math.random
2. Was passiert, wenn du == durch === ersetzt?
Tip: Vergleiche die Inhalte von secret und zahl.value
3. Was musst du tun, damit das Programm weiterhin funktioniert, obwohl du === verwendest?
4. Falls das Emoticon von Zeile 16 im Browser nicht korrekt dargestellt wird, an was kann das liegen?
5. Ändere das HTML und Script soweit, dass keine Warnungen mehr vorhanden sind :)
-->