1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| const delay = function() {
| // implementieren
| }
|
| console.log("erster");
|
| delay(2000)
| .then(function () {
| console.log("zweiter");
|
| return delay(2000);
| })
| .then(function() {
| console.log("Text A");
|
| return delay(2000);
| })
| .then(function() {
| console.log("Text B");
| })
|
|