Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Hydrock/bbdfd575b8c548c397577b76241f1326 to your computer and use it in GitHub Desktop.
Save Hydrock/bbdfd575b8c548c397577b76241f1326 to your computer and use it in GitHub Desktop.
async getPost = () => {
const response = await fetch('https://jsonplaceholder.typicode.com/posts/1');
const data = await response.json();
console.log(data);
}
@xaosxaos
Copy link

Uncaught SyntaxError: Unexpected identifier

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment