この問題を解決するにはコールバックが必要なのはわかっていますが、うまくいきません。いくつかの異なる解決策を試しましたが、私の試みを見る必要はありません。代わりに、私が達成しようとしていることを示すだけです。
theCodeToRun('123', '1');
//Wait for it to complete...
theCodeToRun('123', '0');
function theCodeToRun(myID, exitEarly){
//Do some stuff (using myID)
if(exitEarly == 1){
return false; //Exit
}
//Do some more stuff
}