S
Size: a a a
S
AS
ГР
AS
ГР
G
z
AS
AS
G
Д
G
Д
async function tryThenable() {
const justThenable = {
then(resolve) {
resolve(1);
},
};
const data = await justThenable;
console.log(data);
return {
then(resolve) {
resolve(2);
},
};
}
tryThenable().then(console.log);
Д
Д
OJ
Д