M
Size: a a a
M
k🥔
fooFirst().then((r) => {но в консоли все равно пустой массив выводится
fooSecond(r).then((l) => {
console.log(l);
});
});
КЗ
fooFirst().then((r) => {но в консоли все равно пустой массив выводится
fooSecond(r).then((l) => {
console.log(l);
});
});
К1
fooFirst().then((r) => {но в консоли все равно пустой массив выводится
fooSecond(r).then((l) => {
console.log(l);
});
});
fooFirst().then((r) => {
return fooSecond(r);
}).then((l) => {
console.log(l);
});
每快
MD