Having a nightmare with a function that’s finishing before all the code has run. Am trying to build in a counter, and only returning when the code is finished.
I’ve emulated this like so (I know it’s not fantastic, but if someone could point me along the right lines, I’d be very grateful):
//I want this to alert "Done"
alert(timerCheck());
function timerCheck() {
var finished;
var myLoop = 5;
for (i = 0; i < myLoop; i++) {
//This is emulating the slow code
window.setTimeout(checkFinished, 900);
alert(i);
}
function checkFinished() {
//I originally had the "return here, before realising my error
finished = true;
}
if (finished) {
//This is where my problem is
return "done";
}
}
Like I said, a much simplified example – if someone could point out the mistake, it’d save me a lot of hassle!
You cannot get the return value of a function synchronously if that function calls and depends on asynchronous functions.
You have to work with callbacks. See this question for some more details.
For example, your function would look like this: