-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuebung13
More file actions
33 lines (26 loc) · 1.12 KB
/
uebung13
File metadata and controls
33 lines (26 loc) · 1.12 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
<!DOCTYPE html>
<html>
<head>
<title>JS Kurs</title>
<meta charset="utf-8">
</head>
<body>
<p id="ausgabe" >tralala </p>
<div id="ausgabe2"> Original Text </div>
<script>
"use strict";
let tale='Three hicks were working on a telephone tower - ' +
'Steve, Bruce and Jed. \nSteve falls off and is killed instantly.\n' +
'As the ambulance takes the body away, Bruce says, "Someone should go ' +
'and tell his wife.\" Jed says, \"Ok, I\'m pretty good at that sensetive stuff,'+
' I\'ll do it.\"\nTwo hours later, he comes back carrying a case of beer.\n'+
'Bruce says, \"Where did you get that, Jed?\"\n\"Steve\'s wife gave it to me,\"'+
' Jed replies.\n\"That\'s unbelievable, you told the lady her husband was' +
' dead and she gave you beer?\"\n\"Well, not exactly\", Jed says. \"' +
'When she answered the door, I said to her, \'You must be Steve\s widow\'.\"\n' +
'She said, \"No, I\'m not a widow!\"\n'+
'And I said, \"I\'ll bet you a case of Budweiser you are.\"\n'
console.log(tale)
</script>
</body>
</html>