Skip to content

Instantly share code, notes, and snippets.

@zoonderkins
Created April 6, 2018 03:18
Show Gist options
  • Save zoonderkins/de45d633b675f1e0e1d244b49d1a7c1d to your computer and use it in GitHub Desktop.
Save zoonderkins/de45d633b675f1e0e1d244b49d1a7c1d to your computer and use it in GitHub Desktop.
[Await samples] Some sample for await #javascript
await fetch('https://api.github.com/users/wesbos').then(data => data.json())
OR
await (await fetch('https://api.github.com/users/wesbos')).json()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment