Untitled

Anonymous
javascript
05/20/2024 5:08 PM
284 B
20
Indexable
console.log('Start');

setTimeout(() => {
    console.log('1');
}, 100);

setImmediate(() => {
    console.log('2');
});

Promise.resolve().then(() => {
    console.log('3');
});

console.log('End');
Editor is loading...
Leave a Comment