I want to execute two lines of JS after each other, in order, line by line. How would this be achieved? In the case I need to implement this, arrow functions are not viable.
functionThatTakesSomeTime();
console.log("execute this after the function");
is there even a way to do this, and in that case how?