JavaScript: How to make API calls for each value in an array and get an array of results.
Today I had to call an API with for a bunch of ids and get the results for each of those ids. Now the problem is, I need to collect the results from all of those API calls. And I did not want to use plain old for loop for this today.
7
2