Untitled
unknown
javascript
a year ago
213 B
6
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