Skip to content

Instantly share code, notes, and snippets.

@goofmint
Created January 9, 2018 06:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save goofmint/92bc7ca6a8811205d69bb7e5a8cface2 to your computer and use it in GitHub Desktop.
Save goofmint/92bc7ca6a8811205d69bb7e5a8cface2 to your computer and use it in GitHub Desktop.
async function main() {
var x = await delay(10);
console.log(x);
try {
var y = await delay(20);
console.log(y);
}catch(e) {
console.log('Error');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment