AL
Size: a a a
AL
TS
TS
TS
AR
AR
AR
AL
AR
AL
AL
Вт
Вт
AL
AS
AL
AL
AL
const results = [];
for (const p of promises) {
const result = await p;
results.push(p);
}
const results = [];
for await (const result of promises) {
results.push(result);
}
AK
const results = [];
for (const p of promises) {
const result = await p;
results.push(p);
}
const results = [];
for await (const result of promises) {
results.push(result);
}
AR
const results = [];
for (const p of promises) {
const result = await p;
results.push(p);
}
const results = [];
for await (const result of promises) {
results.push(result);
}