Skip to content

Instantly share code, notes, and snippets.

@Yago
Created November 28, 2018 12:57
Show Gist options
  • Save Yago/0f9495dee97ae965136ca30e5d1e7b14 to your computer and use it in GitHub Desktop.
Save Yago/0f9495dee97ae965136ca30e5d1e7b14 to your computer and use it in GitHub Desktop.
const delay = (time) => new Promise(resolve => setTimeout(resolve, time));
const thanks = async () => {
console.log('👊');
await delay(500);
console.log('🖐️');
await delay(500);
console.log('🎤');
};
thanks(); // 😘
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment