Skip to content

Instantly share code, notes, and snippets.

@AleixMT
Created April 26, 2024 15:03
Show Gist options
  • Save AleixMT/ada9e300df47fadab87b988f46e43ce8 to your computer and use it in GitHub Desktop.
Save AleixMT/ada9e300df47fadab87b988f46e43ce8 to your computer and use it in GitHub Desktop.
A basic implementation of the sleep function in JS
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
sleep(1000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment