Sascha Schulz
2025-01-13 1de28b44517300a199e5f794d3b5a5b053bfaafc
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");
    })