Skip to content

Instantly share code, notes, and snippets.

@dhunmoon
Last active February 2, 2017 09:30
Show Gist options
  • Save dhunmoon/badde0f9985002afa8c586ffd4a07870 to your computer and use it in GitHub Desktop.
Save dhunmoon/badde0f9985002afa8c586ffd4a07870 to your computer and use it in GitHub Desktop.
JS: Sleep
//Not Supported in IE Older Versions only found to be working in modern Browsers
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
async function demo() {
console.log('Taking a break...');
await sleep(2000);
console.log('Two second later');
}
demo();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment