они ничего не возращают? async function getData(url: string): Promise<void>{
const response = await fetch(url);
const json = await response.json();
}
const prom1 = getData('https://jsonplaceholder.typicode.com/todos/1')
const prom2 = getData('https://jsonplaceholder.typicode.com/todos/2');
Promise.all([prom1, prom2]).then(resAll => {
console.log(resAll);
});
так и узнать
вы все верно указали. они возвращают, void - это на уровне реализации undefined
Обсуждают сегодня