function wait(milliseconds) {
const date = Date.now();
let currentDate = null;
do {
currentDate = Date.now();
} while (currentDate - date < milliseconds);
}
function your_code() {
//code stuff
wait(1000); //waits 1 second before continuing
//other code stuff
}