Initial commit

This commit is contained in:
2025-07-23 09:31:23 +02:00
commit 151c62dd46
18 changed files with 204 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
console.log("Start");
setTimeout(() => {
console.log("Timeout");
}, 0);
Promise.resolve().then(() => {
console.log("Promise");
});
console.log("End");