Skip to content

Instantly share code, notes, and snippets.

@akbarjondev
Created November 22, 2023 13:32
Show Gist options
  • Save akbarjondev/4f5b14c2312f98854f79a399f773ca99 to your computer and use it in GitHub Desktop.
Save akbarjondev/4f5b14c2312f98854f79a399f773ca99 to your computer and use it in GitHub Desktop.
Function for delaying executing next line of code
function delay(ms) {
return new Promise(resolve => {
setTimeout(resolve, ms);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment