Sascha Schulz
2023-08-15 60c7f2f7d862cb4cf003c3bdf56e11cb18d389d9
1
2
3
4
5
6
setTimeout(function() {
    // Code, der nach 2 Sekunden ausgeführt wird
    console.log("zweiter");
}, 2000);
 
console.log("erster");