DE
А почему SET?
Size: a a a
DE
DE
AR
DE
DE
DE
ПМ
DE
js
let result;
function getComments () {
fetch()
.then((res) => {
result = res.data;
});
}
S
js
let result;
function getComments () {
fetch()
.then((res) => {
result = res.data;
});
}

DE
js
async function getComments () {
const res = await fetch()
const parsed = await res.json()
return parsed
}
S
js
async function getComments () {
const res = await fetch()
const parsed = await res.json()
return parsed
}
