Skip to content

Commit f5833a9

Browse files
committed
task + solution
1 parent 241859f commit f5833a9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

1-js/02-first-steps/09-alert-prompt-confirm/1-simple-page/solution.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
JavaScript-code:
1+
JavaScript-Code:
22

33
```js demo run
4-
let name = prompt("What is your name?", "");
4+
let name = prompt("Wie heißt du?", "");
55
alert(name);
66
```
77

8-
The full page:
8+
Die ganze Seite:
99

1010
```html
1111
<!DOCTYPE html>
@@ -15,7 +15,7 @@ The full page:
1515
<script>
1616
'use strict';
1717
18-
let name = prompt("What is your name?", "");
18+
let name = prompt("Wie heißt du?", "");
1919
alert(name);
2020
</script>
2121

1-js/02-first-steps/09-alert-prompt-confirm/1-simple-page/task.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ importance: 4
22

33
---
44

5-
# A simple page
5+
# Eine einfache Seite
66

7-
Create a web-page that asks for a name and outputs it.
7+
Erstelle eine Web-Site, die einen Namen fordert und diesen dann ausgibt.
88

99
[demo]

0 commit comments

Comments
 (0)