function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
div2.style = 'background:red';//должно выполниться первым
let info = document.querySelector('#info');
async function myFunc() {
await sleep(1000);
info.innerHTML = 'Привет!';//должно выполниться вторым
await sleep(1000);
div1.style = 'background:green';
}
myFunc();