YP
Size: a a a
YP
YP
function liveCoding() {
new Promise(() => setTimeout(() => console.log(1), 2000)).then(() =>
console.log(2)
);
}
liveCoding();
Почему второй консоль лог не выводится?YP
YP
D
YP
YP
D
YP
v
function liveCoding() {
new Promise((resolve) => setTimeout(() => {
console.log(1)
resolve()
}, 2000)).then(() =>
console.log(2)
);
}
liveCoding();
YP
DP
DP
DS
SG
АИ
DS
АИ