Skip to content

Instantly share code, notes, and snippets.

@viniciusmelocodes
Created October 30, 2018 18:07
Show Gist options
  • Save viniciusmelocodes/ac4dc5d27fc5bb5c8b611f74bdc87456 to your computer and use it in GitHub Desktop.
Save viniciusmelocodes/ac4dc5d27fc5bb5c8b611f74bdc87456 to your computer and use it in GitHub Desktop.
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
async function demo() {
console.log('Taking a break...');
await sleep(2000);
console.log('Two seconds later');
}
demo();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment