Digging on async / await
notation in Javascript to make sure async code is finished before moving on to the next task.
The new problem I'm running into now is that now I'm waiting on the population of a whole lot of stuff on a page using bunches of:
element.innerHTML = data;
And near as I can tell, there is no way to know when element.innerHTML = data
is complete as it doesn't return anything I can monitor / await for.
So, how do I know that the innerHTML has been populated successfully and can move on?