How to run async functions in parallel?
A nodeJS script. I have a function in it: async myFunc1(a, b, c) { //……. } which returns some value but not Promise. I used to run it as this: let a1 = await myFunc1(1, "fds", 99); Now I need to run dozens of them at the same time, and the input of the amount… Read More How to run async functions in parallel?