Sascha Schulz
2023-11-07 5ec2fda085ef8c56063783f49f599518713bb35e
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");
    })