Sending a sizeable array of Promises in Javascript
I’m working on a piece of code to request information from an API. Throttles at 10 requests per second. My solution was to Promise.all(calculate(item1),calculate(item2)… ) and so forth for the 10 requests. My approach was questionable to say the least, because when I have less than 10 items to check, my Promise.all is half done,… Read More Sending a sizeable array of Promises in Javascript