goldis
10/4/2019 - 6:45 AM

11_async

const first = () => console.log('First');
const second = () => console.log('Second');
const third = () => console.log('Third');

first();

setTimeout(second, 0);

third();