Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save lfreeland/e6e92ef93926b962d9b16dc3304e5aee to your computer and use it in GitHub Desktop.

Select an option

Save lfreeland/e6e92ef93926b962d9b16dc3304e5aee to your computer and use it in GitHub Desktop.
TypeScript2 Async Await Example
async function main() {
await ping();
// Other code here is executed without a callback function.
}
main();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment