🌬М
Size: a a a
NT
🌬М
🌬М
🌬М
S
FT
[{
first: "Romeo",
last: "Montague"
}, {
first: "Mercutio",
last: null
}, {
first: "Tybalt",
last: "Capulet"
}]
.reduce(function(a, b) {
return a && b;
});
Что делает этот ретурн?И
NT
И
NT
NT
const getAllStuff = async () => {
const [users, some, books] = await Promise.all([
API.getUsers(),
API.getSome(),
API.getBooks()
]);
return { users, some, books };
}
NT
VH
const getAllStuff = async () => {
const [users, some, books] = await Promise.all([
API.getUsers(),
API.getSome(),
API.getBooks()
]);
return { users, some, books };
}
j
NT