Skip to content

Instantly share code, notes, and snippets.

@behnammodi
Created October 4, 2019 19:39
Show Gist options
  • Save behnammodi/7418b44cd992f98db63090241924c41f to your computer and use it in GitHub Desktop.
Save behnammodi/7418b44cd992f98db63090241924c41f to your computer and use it in GitHub Desktop.
function sleep(seconds) {
const startTime = new Date();
const endTime = startTime.setSeconds(startTime.getSeconds() + seconds);
while (new Date() < endTime) {
continue;
}
return;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment