Is there a way to delay the evaluation of an array of promises using Promise.all()?
Does it make sense to manually add a delay function to the end of each promise before adding them to the array?
Promise.all([p1,p2,p3]).then(res => console.log(res))
I would like to add a delay because my server can't handle too many requests at once.