Untitled
unknown
javascript
2 years ago
213 B
9
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