V
Size: a a a
V
АМ
АМ
let {foo} = {foo: 1}
АМ
EA
var foo = 1;
function bar() {
alert(foo);
if (!foo) {
var foo = 10;
}
}
bar();
V
var foo = 1;
function bar() {
alert(foo);
if (!foo) {
var foo = 10;
}
}
bar();
EA
AZ
АМ
AZ
EA
let x = await f1();
let y = await f2();
console.log(x, y);
AZ
let x = await f1();
let y = await f2();
console.log(x, y);
EA
let x = f1();
let y = f2();
console.log(await x, await y);
AZ
let x = f1();
let y = f2();
console.log(await x, await y);
AZ
V
let x = await f1();
let y = await f2();
console.log(x, y);
const [x, y] = await Promise.all([f1(), f2()])
V
let x = f1();
let y = f2();
console.log(await x, await y);
EA
АМ
let x = f1();
let y = f2();
console.log(await x, await y);
T