T
import { n } from ‘’
это не деструктуризация
Size: a a a
T
import { n } from ‘’
T
AZ
let x = f1();
let y = f2();
console.log(`${await x}, ${await y}`);
EA
V
V
T
АМ
AZ
T
EA
AZ
T
let x = f1();
let y = f2();
console.log(`${await x}, ${await y}`);
АМ
T
T
let x = f1();
let y = f2();
console.log(`${await x}, ${await y}`);
T
const [x, y] = await Promise.all([f1(), f2()])
T
let x = await f1();
let y = await f2();
console.log(x, y);
T