-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkapitel04
More file actions
36 lines (25 loc) · 800 Bytes
/
kapitel04
File metadata and controls
36 lines (25 loc) · 800 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Kapitel 3</title>
<meta charset="utf-8">
</head>
<body>
<p id="ausgabe" >tralala </p>
<div id="ausgabe2"> Original Text </div>
<script>
//"use strict";
let ausgabe = 'Kapitel 3';
ausgabe= window.prompt('Please enter your Password:', '***********');
ausgabe = `your password is ${ausgabe}, right?`; // hier ist ein Beispiel von
// template-String das mit $. es funzt nur, wenn wir die akcent grave benutzen
// `` -- diese hier
//const NULL=0;
document.getElementById('ausgabe').innerHTML = ausgabe;
ausgabe=2;
äusgabe **=3;
document.getElementById('ausgabe2').innerHTML = äusgabe;
console.log('Hello world');
</script>
</body>
</html>