I have a list of functions in angular2/typescript app called as: f1
, f2
, f3
, f4
etc... These functions can be executed in any order and all of them return void.
I am thinking run them in parallel but don't know how to do that with target ES5.
What is the best way to execute these functions?
thanks,
Austin