fetch('https://jsonplaceholder.typicode.com/todos/' + id)
.then(response => response.json())
.then(json => console.log(json.id))
};
arr.map(item=>getData(item));
хм..
есть простое решение как сделать последовательно, в том порядке как в массиве?
Используй async/await (async () => { for (const i of arr) { await getData(i) } })()
Promise.all
Обсуждают сегодня