I have a function similar as below, when function run() is calling,
it will run startA and startB at the same time, how to make
sure startB will run only after startA completed?
it will run startA and startB at the same time, how to make
sure startB will run only after startA completed?
Code:
Function run() {
function startA();
function startB();
}
Comment